From 96d6d3291c85ecca78fa6f1a3e4d5f0de357a187 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 23:10:53 +0000 Subject: [PATCH] Bump actions/download-artifact from 6 to 7 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 6 to 7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '7' 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 f9667749cff..80965b3c632 100644 --- a/.github/workflows/deploy_beta_testing.yml +++ b/.github/workflows/deploy_beta_testing.yml @@ -50,7 +50,7 @@ jobs: - uses: actions/checkout@v6 - name: Download war artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: built-app path: ./ diff --git a/.github/workflows/maven_unit_test.yml b/.github/workflows/maven_unit_test.yml index 0198a13f734..872e596b516 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@v6 + - uses: actions/download-artifact@v7 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@v6 + - uses: actions/download-artifact@v7 with: name: java-reportdir - run: tar -xvf java-reportdir.tar