diff --git a/.github/workflows/dockerImage.yml b/.github/workflows/dockerImage.yml index 4198ba0..2fa47e3 100644 --- a/.github/workflows/dockerImage.yml +++ b/.github/workflows/dockerImage.yml @@ -33,7 +33,7 @@ jobs: architecture: x64 - name: Caching maven dependencies - uses: actions/cache@v1 + uses: actions/cache@v4 env: cache-name: cache-maven-dependencies with: @@ -43,7 +43,7 @@ jobs: run: mvn -B -Pprod clean package -DskipTests - name: Maven Verify run: mvn -B -Pprod clean verify - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: targetfiles path: target/*.jar @@ -74,7 +74,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Download buildfiles artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: targetfiles - name: Get current time diff --git a/.github/workflows/dockerImageSkipTests.yml b/.github/workflows/dockerImageSkipTests.yml index a457bf8..65767d9 100644 --- a/.github/workflows/dockerImageSkipTests.yml +++ b/.github/workflows/dockerImageSkipTests.yml @@ -32,7 +32,7 @@ jobs: architecture: x64 - name: Caching maven dependencies - uses: actions/cache@v1 + uses: actions/cache@v4 env: cache-name: cache-maven-dependencies with: @@ -40,7 +40,7 @@ jobs: key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }} - name: Maven Package run: mvn -B -Pprod clean package -DskipTests - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: targetfiles path: target/*.jar @@ -71,7 +71,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Download buildfiles artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: targetfiles - name: Get current time diff --git a/.github/workflows/feature-branch.yml b/.github/workflows/feature-branch.yml index 231959b..aabacef 100644 --- a/.github/workflows/feature-branch.yml +++ b/.github/workflows/feature-branch.yml @@ -23,7 +23,7 @@ jobs: architecture: x64 - name: Caching maven dependencies - uses: actions/cache@v1 + uses: actions/cache@v4 env: cache-name: cache-maven-dependencies with: