From b83ebf0ed2489f63beb7fd9bffda369668983eac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Dec 2025 02:22:20 +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/docker-image.yml | 6 +++--- .github/workflows/python-coverage.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 320e908..3de734c 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -77,7 +77,7 @@ jobs: needs: build steps: - name: Download artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: ${{ env.ARTIFACT_NAME }}_lint path: /tmp/ @@ -97,7 +97,7 @@ jobs: needs: build steps: - name: Download artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: ${{ env.ARTIFACT_NAME }}_test path: /tmp/ @@ -171,7 +171,7 @@ jobs: security-events: write steps: - name: Download artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: ${{ env.ARTIFACT_NAME }}_prod path: /tmp/ diff --git a/.github/workflows/python-coverage.yml b/.github/workflows/python-coverage.yml index abf4b35..3e4dbd8 100644 --- a/.github/workflows/python-coverage.yml +++ b/.github/workflows/python-coverage.yml @@ -72,7 +72,7 @@ jobs: with: fetch-depth: 0 - name: Download coverage artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: coverage-report path: coverage @@ -95,7 +95,7 @@ jobs: fetch-depth: 0 - name: Download coverage artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: coverage-report path: coverage