From 59cb3fe9de5cf89132aa5f128af711ad2ce6629c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Oct 2024 01:35:46 +0000 Subject: [PATCH] fix: bump actions/upload-artifact from 3.1.3 to 4.4.3 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.3 to 4.4.3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3.1.3...b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/reusable-copy-to-s3.yml | 3 ++- .github/workflows/reusable-docker-build.yml | 2 +- .github/workflows/reusable-go-test.yml | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reusable-copy-to-s3.yml b/.github/workflows/reusable-copy-to-s3.yml index d95e5c3..8a8d667 100644 --- a/.github/workflows/reusable-copy-to-s3.yml +++ b/.github/workflows/reusable-copy-to-s3.yml @@ -153,9 +153,10 @@ jobs: echo "*ghostly oooooohhh*" esac aws s3 "$CP_OR_SYNC" "${ARGS[@]}" - - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 if: ${{ inputs.direction == 'from' }} with: name: ${{ inputs.artifact-name }} path: ${{ inputs.artifact-path }} retention-days: 1 + overwrite: true diff --git a/.github/workflows/reusable-docker-build.yml b/.github/workflows/reusable-docker-build.yml index c39722f..a4ba8e9 100644 --- a/.github/workflows/reusable-docker-build.yml +++ b/.github/workflows/reusable-docker-build.yml @@ -374,7 +374,7 @@ jobs: echo "image=$IMAGE_URI" >> $GITHUB_OUTPUT echo $IMAGE_URI > imageinfo_${{ inputs.imageName}}${{ github.run_id }}${{ github.run_attempt }}.txt - name: Upload imageinfo - uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 with: name: ${{ inputs.imageName }}${{ github.run_id }}${{ github.run_attempt }} path: imageinfo_${{ inputs.imageName }}${{ github.run_id }}${{ github.run_attempt }}.txt diff --git a/.github/workflows/reusable-go-test.yml b/.github/workflows/reusable-go-test.yml index 86d65f1..768b4ab 100644 --- a/.github/workflows/reusable-go-test.yml +++ b/.github/workflows/reusable-go-test.yml @@ -40,7 +40,7 @@ jobs: run: | go tool cover -html=/tmp/coverage.out -o /tmp/coverage.html - name: Upload test log - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 if: always() with: name: test-results @@ -49,3 +49,4 @@ jobs: /tmp/coverage.html if-no-files-found: error retention-days: 1 + overwrite: true