From d0f1c9f5918b1dea85f19f757aceb09bc7f94b1d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Oct 2025 23:10:38 +0000 Subject: [PATCH] Bump actions/download-artifact from 5 to 6 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy_beta_testing.yml | 2 +- .github/workflows/maven_unit_test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy_beta_testing.yml b/.github/workflows/deploy_beta_testing.yml index bf4a90d7fb4..bcf20b8bcfe 100644 --- a/.github/workflows/deploy_beta_testing.yml +++ b/.github/workflows/deploy_beta_testing.yml @@ -50,7 +50,7 @@ jobs: - uses: actions/checkout@v5 - name: Download war artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: built-app path: ./ diff --git a/.github/workflows/maven_unit_test.yml b/.github/workflows/maven_unit_test.yml index 5857b4489db..9b70aabdb5e 100644 --- a/.github/workflows/maven_unit_test.yml +++ b/.github/workflows/maven_unit_test.yml @@ -112,7 +112,7 @@ jobs: cache: maven # Get the build output from the unit test job - - uses: actions/download-artifact@v5 + - uses: actions/download-artifact@v6 with: name: java-artifacts - run: | @@ -145,7 +145,7 @@ jobs: cache: maven # Get the build output from the integration test job - - uses: actions/download-artifact@v5 + - uses: actions/download-artifact@v6 with: name: java-reportdir - run: tar -xvf java-reportdir.tar