diff --git a/.github/workflows/dockerImage.yml b/.github/workflows/dockerImage.yml index 0b84b37..397b8e3 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/feature-branch.yml b/.github/workflows/feature-branch.yml index efc6601..043eef4 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: