diff --git a/.github/workflows/auto-upgrade-ci.yaml b/.github/workflows/auto-upgrade-ci.yaml index 672a2b643..f9d5d5c83 100644 --- a/.github/workflows/auto-upgrade-ci.yaml +++ b/.github/workflows/auto-upgrade-ci.yaml @@ -371,7 +371,7 @@ jobs: - name: Upload e2e log if: ${{ needs.get_ref.outputs.e2e_enabled == 'true' }} - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: ${{ needs.get_ref.outputs.old_version }}-to-${{ needs.get_ref.outputs.new_version }}-debuglog.txt path: test/e2edebugLog.txt @@ -379,7 +379,7 @@ jobs: - name: Upload e2e report if: ${{ env.UPLOAD_E2E_REPORT == 'true' }} - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: ${{ needs.get_ref.outputs.old_version }}-to-${{ needs.get_ref.outputs.new_version }}-e2ereport.json path: e2ereport.json diff --git a/.github/workflows/build-image-base.yaml b/.github/workflows/build-image-base.yaml index 829fdc857..9227c7947 100644 --- a/.github/workflows/build-image-base.yaml +++ b/.github/workflows/build-image-base.yaml @@ -131,7 +131,7 @@ jobs: - name: Upload artifact digests if: ${{ env.exists == 'false' }} - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: image-digest-${{ env.IMAGE_NAME }}-${{ env.tag }} path: image-digest diff --git a/.github/workflows/build-image-ci.yaml b/.github/workflows/build-image-ci.yaml index cd52130e6..fdd5df149 100644 --- a/.github/workflows/build-image-ci.yaml +++ b/.github/workflows/build-image-ci.yaml @@ -250,7 +250,7 @@ jobs: # Upload artifact digests - name: Upload artifact digests - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: image-digest-${{ matrix.name }}-${{ env.tag }} path: image-digest @@ -258,7 +258,7 @@ jobs: # Upload artifact race images tar - name: Upload artifact race image tar - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: ${{ inputs.imageTarName }}-${{ matrix.name }}-${{ env.tag }} path: /tmp/${{ matrix.name }}-race.tar diff --git a/.github/workflows/build-image-plugins.yaml b/.github/workflows/build-image-plugins.yaml index f3df1af3e..eeb4068ec 100644 --- a/.github/workflows/build-image-plugins.yaml +++ b/.github/workflows/build-image-plugins.yaml @@ -131,7 +131,7 @@ jobs: - name: Upload artifact digests if: ${{ env == 'false' }} - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: image-digest-${{ env.IMAGE_NAME }}-${{ steps.arg.outputs.image_tag }} path: image-digest diff --git a/.github/workflows/call-release-changelog.yaml b/.github/workflows/call-release-changelog.yaml index a140a2a14..368e97e4f 100644 --- a/.github/workflows/call-release-changelog.yaml +++ b/.github/workflows/call-release-changelog.yaml @@ -109,7 +109,7 @@ jobs: cat ${FILE_PATH} - name: Upload Changelog - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: changelog_artifact_${{ env.RUN_dest_tag }} path: ${{ env.FILE_PATH }} diff --git a/.github/workflows/call-release-chart.yaml b/.github/workflows/call-release-chart.yaml index de90c2bbe..963f82f1c 100644 --- a/.github/workflows/call-release-chart.yaml +++ b/.github/workflows/call-release-chart.yaml @@ -87,7 +87,7 @@ jobs: mv charts/*.tgz tmp - name: Upload Artifact - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: chart_package_artifact_${{ needs.get_ref.outputs.ref }} path: tmp/* diff --git a/.github/workflows/call-release-doc.yaml b/.github/workflows/call-release-doc.yaml index d22545f0c..c00147711 100644 --- a/.github/workflows/call-release-doc.yaml +++ b/.github/workflows/call-release-doc.yaml @@ -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@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: website_package_artifact_${{ env.REF }} path: site.tar.gz diff --git a/.github/workflows/call-release-image.yaml b/.github/workflows/call-release-image.yaml index 39af5b484..2f2ec1195 100644 --- a/.github/workflows/call-release-image.yaml +++ b/.github/workflows/call-release-image.yaml @@ -177,14 +177,14 @@ jobs: cd .. - name: Upload artifact digests - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: image-digest-artifact-${{ matrix.name }}-${{ env.imagetag }} path: image-digest-output.txt retention-days: 1 - name: Upload artifact digests - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: makefile-digest-artifact-${{ matrix.name }}-${{ env.imagetag }} path: Makefile.digests diff --git a/.github/workflows/e2e-init.yaml b/.github/workflows/e2e-init.yaml index 737e8af1a..74ad8e578 100644 --- a/.github/workflows/e2e-init.yaml +++ b/.github/workflows/e2e-init.yaml @@ -179,7 +179,7 @@ jobs: - name: Upload Setup Kind Cluster log if: ${{ env.RUN_SETUP_KIND_CLUSTER_PASS == 'false' && env.UPLOAD_SETUP_KIND_CLUSTER_LOG == 'true' }} - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: ${{ inputs.os }}-${{ inputs.ip_family }}-${{ matrix.e2e_test_mode }}-${{ inputs.k8s_version }}-${{ inputs.image_tag }}-setupkind.txt path: test/e2edebugLog.txt @@ -225,7 +225,7 @@ jobs: - name: Upload e2e log if: ${{ inputs.run_e2e == 'true' }} - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: ${{ inputs.os }}-${{ inputs.ip_family }}-${{ matrix.e2e_test_mode }}-${{ inputs.k8s_version }}-${{ inputs.image_tag }}-debuglog.txt path: test/e2edebugLog.txt @@ -233,7 +233,7 @@ jobs: - name: Upload e2e report if: ${{ env.UPLOAD_E2E_REPORT == 'true' }} - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: ${{ inputs.os }}-${{ inputs.ip_family }}-${{ matrix.e2e_test_mode }}-${{ inputs.k8s_version }}-${{ inputs.image_tag }}-e2ereport.json path: e2ereport.json @@ -293,7 +293,7 @@ jobs: - name: Upload Uninstall Spiderpool e2e log if: ${{ env.UNINSTALL_E2E_PASS == 'false' && env.UPLOAD_UNINSTALL_E2E_LOG == 'true' }} - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: ${{ inputs.os }}-${{ inputs.ip_family }}-${{ matrix.e2e_test_mode }}-${{ inputs.k8s_version }}-${{ inputs.image_tag }}-uninstall-debugLog.txt path: test/e2e-uninstall-debugLog.txt diff --git a/.github/workflows/lint-golang.yaml b/.github/workflows/lint-golang.yaml index 277ffcba4..fabda90d0 100644 --- a/.github/workflows/lint-golang.yaml +++ b/.github/workflows/lint-golang.yaml @@ -214,7 +214,7 @@ jobs: - name: Upload Coverage Artifact if: ${{ steps.unittest.outcome == 'failure' }} - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: ${{ needs.filter_changes.outputs.ref }}-coverage.out path: ${{ needs.filter_changes.outputs.ref }}-coverage.out @@ -222,7 +222,7 @@ jobs: - name: Upload Report Artifact if: ${{ steps.unittest.outcome == 'failure' }} - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: ${{ needs.filter_changes.outputs.ref }}-unittestreport.json path: ${{ needs.filter_changes.outputs.ref }}-unittestreport.json diff --git a/.github/workflows/lint-yaml.yaml b/.github/workflows/lint-yaml.yaml index 691143631..353f3a98b 100644 --- a/.github/workflows/lint-yaml.yaml +++ b/.github/workflows/lint-yaml.yaml @@ -50,7 +50,7 @@ jobs: - name: Upload artifact digests if: ${{ steps.yaml-lint.outcome == 'failure' }} - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: log path: ${{ steps.yaml-lint.outputs.logfile }} diff --git a/.github/workflows/update-chart-readme.yml b/.github/workflows/update-chart-readme.yml index c3b2b1b8d..6f3af4028 100644 --- a/.github/workflows/update-chart-readme.yml +++ b/.github/workflows/update-chart-readme.yml @@ -52,7 +52,7 @@ jobs: echo "-----------------------------" - name: Upload artifact digests - uses: actions/upload-artifact@v4.5.0 + uses: actions/upload-artifact@v4.6.0 with: name: ${{github.event.pull_request.head.ref}}-README.md path: thisProject/charts/spiderpool/README.md