From b85d73d27edb73ab90a2c688654d913d7c9f19a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 19:48:50 +0000 Subject: [PATCH] chore(deps): bump actions/download-artifact from 5.0.0 to 6.0.0 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5.0.0 to 6.0.0. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5.0.0...v6.0.0) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docker-docs.yaml | 2 +- .github/workflows/docker-release.yaml | 2 +- .github/workflows/docker-run.yaml | 2 +- .github/workflows/docker-security.yaml | 2 +- .github/workflows/gcs-upload.yaml | 2 +- .github/workflows/tf-release.yaml | 4 ++-- .github/workflows/tf-security.yaml | 2 +- .github/workflows/tf-unittest.yaml | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/docker-docs.yaml b/.github/workflows/docker-docs.yaml index 617042d..22dabaf 100644 --- a/.github/workflows/docker-docs.yaml +++ b/.github/workflows/docker-docs.yaml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v5.0.0 - name: download a build artifact - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v6.0.0 id: download with: name: artifacts_image_${{inputs.PROJECT}} diff --git a/.github/workflows/docker-release.yaml b/.github/workflows/docker-release.yaml index cf84384..c7e5dd8 100644 --- a/.github/workflows/docker-release.yaml +++ b/.github/workflows/docker-release.yaml @@ -32,7 +32,7 @@ jobs: echo "project=${project,,}" >> "$GITHUB_OUTPUT" - name: download a build artifact - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v6.0.0 id: download with: name: artifacts_image_${{steps.lowercase.outputs.project}} diff --git a/.github/workflows/docker-run.yaml b/.github/workflows/docker-run.yaml index 967c448..2b334e5 100644 --- a/.github/workflows/docker-run.yaml +++ b/.github/workflows/docker-run.yaml @@ -21,7 +21,7 @@ jobs: echo "project=${project,,}" >> "$GITHUB_OUTPUT" - name: download a build artifact - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v6.0.0 id: download with: name: artifacts_image_${{inputs.PROJECT}} diff --git a/.github/workflows/docker-security.yaml b/.github/workflows/docker-security.yaml index 038ede1..90d8301 100644 --- a/.github/workflows/docker-security.yaml +++ b/.github/workflows/docker-security.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: download a build artifact - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v6.0.0 id: download with: name: artifacts_image_${{inputs.PROJECT}} diff --git a/.github/workflows/gcs-upload.yaml b/.github/workflows/gcs-upload.yaml index 2bd6e23..b5bf5b5 100644 --- a/.github/workflows/gcs-upload.yaml +++ b/.github/workflows/gcs-upload.yaml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@v5.0.0 - name: download a build artifact if: ${{ inputs.ARTIFACT_NAME != null }} - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v6.0.0 id: download with: name: ${{ inputs.ARTIFACT_NAME }} diff --git a/.github/workflows/tf-release.yaml b/.github/workflows/tf-release.yaml index 6abbd99..044b91a 100644 --- a/.github/workflows/tf-release.yaml +++ b/.github/workflows/tf-release.yaml @@ -60,14 +60,14 @@ jobs: credentials_json: "${{ secrets.GCP_JSON_KEY }}" - name: download a build artifact - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v6.0.0 id: download with: name: artifacts_${{inputs.ENVIRONMENT}}_${{github.sha}} path: ${{ inputs.WORKING_DIRECTORY }} - name: download a custom build artifact - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v6.0.0 id: download-custom if: ${{ inputs.USE_CUSTOM_ARTIFACTS == true }} with: diff --git a/.github/workflows/tf-security.yaml b/.github/workflows/tf-security.yaml index 1431172..c8b31e1 100644 --- a/.github/workflows/tf-security.yaml +++ b/.github/workflows/tf-security.yaml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: download a build artifact - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v6.0.0 id: download with: name: artifacts_${{inputs.ENVIRONMENT}}_${{github.sha}} diff --git a/.github/workflows/tf-unittest.yaml b/.github/workflows/tf-unittest.yaml index ee444b6..8b6082b 100644 --- a/.github/workflows/tf-unittest.yaml +++ b/.github/workflows/tf-unittest.yaml @@ -21,7 +21,7 @@ jobs: uses: actions/checkout@v5.0.0 - name: download a build artifact - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v6.0.0 id: download with: name: artifacts_${{inputs.ENVIRONMENT}}_${{github.sha}}