diff --git a/.github/workflows/dockerImage.yml b/.github/workflows/dockerImage.yml index 6234ea3..64ed823 100644 --- a/.github/workflows/dockerImage.yml +++ b/.github/workflows/dockerImage.yml @@ -32,7 +32,7 @@ jobs: java-package: jdk architecture: x64 - name: Caching maven dependencies - uses: actions/cache@v1 + uses: actions/cache@v4 env: cache-name: cache-maven-dependencies with: @@ -42,7 +42,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 @@ -73,7 +73,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 9aaa919..a90f2db 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: