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}}