From 28d9d029ee8609692b0e0f87e8364fd0ce51e51e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 May 2026 02:22:53 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build_container.yml | 8 ++++---- .github/workflows/build_pull_request.yml | 8 ++++---- .github/workflows/test_worktree_build.yml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) 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