diff --git a/.github/workflows/build-image-base.yaml b/.github/workflows/build-image-base.yaml index 39054261..be189ef0 100644 --- a/.github/workflows/build-image-base.yaml +++ b/.github/workflows/build-image-base.yaml @@ -149,7 +149,7 @@ jobs: - name: Upload artifact digests if: ${{ env.RUN_EXIST == 'false' }} - uses: actions/upload-artifact@v3.1.1 + uses: actions/upload-artifact@v4.4.3 with: name: image-digest-${{ matrix.name }} path: image-digest diff --git a/.github/workflows/call-e2e.yaml b/.github/workflows/call-e2e.yaml index b354facb..5dd6b75b 100644 --- a/.github/workflows/call-e2e.yaml +++ b/.github/workflows/call-e2e.yaml @@ -145,7 +145,7 @@ jobs: fi - name: Upload e2e cluster log - uses: actions/upload-artifact@v3.1.1 + uses: actions/upload-artifact@v4.4.3 with: name: ${{ inputs.ipfamily }}-debuglog-${{ env.RUN_VAR }}.txt path: ${{ env.E2E_LOG_PATH }} @@ -153,7 +153,7 @@ jobs: - name: Upload e2e ginkgo report if: ${{ env.RUN_UPLOAD_LOG == 'true' }} - uses: actions/upload-artifact@v3.1.1 + uses: actions/upload-artifact@v4.4.3 with: name: ${{ inputs.ipfamily }}-e2ereport-${{ env.RUN_VAR }}.json path: ${{ env.E2E_GINKGO_REPORT_PATH }} diff --git a/.github/workflows/call-release-changelog.yaml b/.github/workflows/call-release-changelog.yaml index 43c9a11d..4f11cd9c 100644 --- a/.github/workflows/call-release-changelog.yaml +++ b/.github/workflows/call-release-changelog.yaml @@ -107,7 +107,7 @@ jobs: cat ${FILE_PATH} - name: Upload Changelog - uses: actions/upload-artifact@v3.1.1 + uses: actions/upload-artifact@v4.4.3 with: name: changelog_artifact path: ${{ env.FILE_PATH }} diff --git a/.github/workflows/call-release-image.yaml b/.github/workflows/call-release-image.yaml index 1b7d9cd2..fcf31934 100644 --- a/.github/workflows/call-release-image.yaml +++ b/.github/workflows/call-release-image.yaml @@ -213,14 +213,14 @@ jobs: cd .. - name: Upload artifact digests - uses: actions/upload-artifact@v3.1.1 + uses: actions/upload-artifact@v4.4.3 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.1 + uses: actions/upload-artifact@v4.4.3 with: name: makefile-digest-artifact-${{ env.RUN_IMAGE_TAG }} path: Makefile.digests @@ -229,7 +229,7 @@ jobs: # Upload artifact race images tar - name: Upload image artifact if: ${{ env.RUN_UPLOAD == 'true' }} - uses: actions/upload-artifact@v3.1.1 + uses: actions/upload-artifact@v4.4.3 with: name: image-tar-${{ env.RUN_IMAGE_SUFFIX }} path: /tmp/${{ env.RUN_IMAGE_SUFFIX }}.tar diff --git a/.github/workflows/call-release-pages.yaml b/.github/workflows/call-release-pages.yaml index 904fdc33..ca2542a6 100644 --- a/.github/workflows/call-release-pages.yaml +++ b/.github/workflows/call-release-pages.yaml @@ -60,7 +60,7 @@ jobs: make chart_package - name: Upload Artifact - uses: actions/upload-artifact@v3.1.1 + uses: actions/upload-artifact@v4.4.3 with: name: site_artifact path: output/docs/site.tar.gz @@ -68,7 +68,7 @@ jobs: if-no-files-found: error - name: Upload Artifact - uses: actions/upload-artifact@v3.1.1 + uses: actions/upload-artifact@v4.4.3 with: name: chart_package_artifact path: ${{ env.CHART_OUTPUT_PATH }} diff --git a/.github/workflows/lint-golang.yaml b/.github/workflows/lint-golang.yaml index e019a218..a18b90b6 100644 --- a/.github/workflows/lint-golang.yaml +++ b/.github/workflows/lint-golang.yaml @@ -184,7 +184,7 @@ jobs: - name: Upload Coverage Artifact if: ${{ steps.unitest.outcome == 'failure' }} - uses: actions/upload-artifact@v3.1.1 + uses: actions/upload-artifact@v4.4.3 with: name: coverage.out path: ${{ env.COVERAGE_REPORT_PATH }} @@ -192,7 +192,7 @@ jobs: - name: Upload Report Artifact if: ${{ steps.unitest.outcome == 'failure' }} - uses: actions/upload-artifact@v3.1.1 + uses: actions/upload-artifact@v4.4.3 with: name: unitestreport.json path: ${{ env.UNITEST_REPORT_PATH }} diff --git a/.github/workflows/lint-yaml.yaml b/.github/workflows/lint-yaml.yaml index dffda0b5..46a37274 100644 --- a/.github/workflows/lint-yaml.yaml +++ b/.github/workflows/lint-yaml.yaml @@ -81,7 +81,7 @@ jobs: - name: Upload artifact digests if: ${{ steps.yaml-lint.outcome == 'failure' }} - uses: actions/upload-artifact@v3.1.1 + uses: actions/upload-artifact@v4.4.3 with: name: log path: ${{ steps.yaml-lint.outputs.logfile }}