Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3.1.3 to 4.3.5
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.3 to 4.3.5.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3.1.3...v4.3.5)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Aug 5, 2024
1 parent 505a408 commit c89de16
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-image-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:
- name: Upload artifact digests
if: ${{ env.RUN_EXIST == 'false' }}
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.3.5
with:
name: image-digest-${{ matrix.name }}
path: image-digest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/call-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,15 +146,15 @@ jobs:
fi
- name: Upload e2e cluster log
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.3.5
with:
name: ${{ inputs.ipfamily }}-debuglog-${{ env.RUN_VAR }}.txt
path: ${{ env.E2E_LOG_PATH }}
retention-days: 30

- name: Upload e2e ginkgo report
if: ${{ env.RUN_UPLOAD_LOG == 'true' }}
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.3.5
with:
name: ${{ inputs.ipfamily }}-e2ereport-${{ env.RUN_VAR }}.json
path: ${{ env.E2E_GINKGO_REPORT_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-release-changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
cat ${FILE_PATH}
- name: Upload Changelog
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.3.5
with:
name: changelog_artifact
path: ${{ env.FILE_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-release-chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
make chart_package
- name: Upload Artifact
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.3.5
with:
name: chart_package_artifact
path: ${{ env.CHART_OUTPUT_PATH }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/call-release-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -220,14 +220,14 @@ jobs:
cd ..
- name: Upload artifact digests
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.3.5
with:
name: image-digest-artifact-${{ env.RUN_IMAGE_TAG }}
path: image-digest-output.txt
retention-days: 1

- name: Upload artifact digests
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.3.5
with:
name: makefile-digest-artifact-${{ env.RUN_IMAGE_TAG }}
path: Makefile.digests
Expand All @@ -236,7 +236,7 @@ jobs:
# Upload artifact race images tar
- name: Upload image artifact
if: ${{ env.RUN_UPLOAD == 'true' }}
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.3.5
with:
name: image-tar-${{ env.RUN_IMAGE_SUFFIX }}
path: /tmp/${{ env.RUN_IMAGE_SUFFIX }}.tar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-release-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
echo "Push a doc version: ${{ env.DOCS_TAG }} from branch: ${{ env.REF }}, update it to latest: ${{ env.SET_LATEST }} "
- name: Upload Artifact
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.3.5
with:
name: site_artifact
path: site.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-chart-readme.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
echo "-----------------------------"
- name: Upload artifact digests
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.3.5
with:
name: README.md
path: thisProject/${{ env.CHART_README_PATH }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-golang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -184,15 +184,15 @@ jobs:
- name: Upload Coverage Artifact
if: ${{ steps.unitest.outcome == 'failure' }}
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.3.5
with:
name: coverage.out
path: ${{ env.COVERAGE_REPORT_PATH }}
retention-days: 1

- name: Upload Report Artifact
if: ${{ steps.unitest.outcome == 'failure' }}
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.3.5
with:
name: unitestreport.json
path: ${{ env.UNITEST_REPORT_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-yaml.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:

- name: Upload artifact digests
if: ${{ steps.yaml-lint.outcome == 'failure' }}
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.3.5
with:
name: log
path: ${{ steps.yaml-lint.outputs.logfile }}
Expand Down

0 comments on commit c89de16

Please sign in to comment.