diff --git a/.github/workflows/build_container.yml b/.github/workflows/build_container.yml index 47e5166cae..6b32b93ea6 100644 --- a/.github/workflows/build_container.yml +++ b/.github/workflows/build_container.yml @@ -50,7 +50,7 @@ jobs: mvn clean install -T 4 -Pprod -DskipTests - name: Upload compiled output - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: compiled-output retention-days: 1 @@ -62,7 +62,7 @@ jobs: - name: Save .jar artifact run: mkdir -p ./push && cp obp-api/target/obp-api.jar ./push/ - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: ${{ github.sha }} path: push/ @@ -312,7 +312,7 @@ jobs: - name: Upload Maven build log — shard ${{ matrix.shard }} if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: maven-build-log-shard${{ matrix.shard }} if-no-files-found: ignore @@ -320,7 +320,7 @@ jobs: - name: Upload test reports — shard ${{ matrix.shard }} if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: test-reports-shard${{ matrix.shard }} if-no-files-found: ignore diff --git a/.github/workflows/build_pull_request.yml b/.github/workflows/build_pull_request.yml index 4efc9d1789..6c3e4db3b6 100644 --- a/.github/workflows/build_pull_request.yml +++ b/.github/workflows/build_pull_request.yml @@ -49,7 +49,7 @@ jobs: mvn clean install -T 4 -Pprod -DskipTests - name: Upload compiled output - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: compiled-output retention-days: 1 @@ -62,7 +62,7 @@ jobs: - name: Save .jar artifact run: mkdir -p ./pull && cp obp-api/target/obp-api.jar ./pull/ - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: ${{ github.sha }} path: pull/ @@ -318,7 +318,7 @@ jobs: - name: Upload Maven build log — shard ${{ matrix.shard }} if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: maven-build-log-shard${{ matrix.shard }} if-no-files-found: ignore @@ -326,7 +326,7 @@ jobs: - name: Upload test reports — shard ${{ matrix.shard }} if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: test-reports-shard${{ matrix.shard }} if-no-files-found: ignore diff --git a/.github/workflows/test_worktree_build.yml b/.github/workflows/test_worktree_build.yml index 86bf256e14..99e1535d5e 100644 --- a/.github/workflows/test_worktree_build.yml +++ b/.github/workflows/test_worktree_build.yml @@ -61,7 +61,7 @@ jobs: - name: Upload build log if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: worktree-build-log if-no-files-found: ignore