diff --git a/.github/workflows/dockerImage.yml b/.github/workflows/dockerImage.yml index 0579fc8..e529a4e 100644 --- a/.github/workflows/dockerImage.yml +++ b/.github/workflows/dockerImage.yml @@ -34,7 +34,7 @@ jobs: architecture: x64 - name: Caching maven dependencies - uses: actions/cache@v1 + uses: actions/cache@v4 env: cache-name: cache-maven-dependencies with: @@ -44,7 +44,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 @@ -75,7 +75,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 502d943..7ea2323 100644 --- a/.github/workflows/feature-branch.yml +++ b/.github/workflows/feature-branch.yml @@ -22,7 +22,7 @@ jobs: architecture: x64 - name: Caching maven dependencies - uses: actions/cache@v1 + uses: actions/cache@v4 env: cache-name: cache-maven-dependencies with: