diff --git a/.github/workflows/auto-upgrade-ci.yaml b/.github/workflows/auto-upgrade-ci.yaml index 4cdced552b..99c598534c 100644 --- a/.github/workflows/auto-upgrade-ci.yaml +++ b/.github/workflows/auto-upgrade-ci.yaml @@ -227,14 +227,14 @@ jobs: - name: Download old spiderpool-agent image with tag ${{ needs.call_build_old_ci_image.outputs.imageTag }} if: ${{ needs.get_ref.outputs.build_old_image_tag == 'true' }} - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: old-image-tar-spiderpool-agent path: test/.download - name: Download old spiderpool-controller image with tag ${{ needs.call_build_old_ci_image.outputs.imageTag }} if: ${{ needs.get_ref.outputs.build_old_image_tag == 'true' }} - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: old-image-tar-spiderpool-controller path: test/.download @@ -308,13 +308,13 @@ jobs: cp -r /tmp/config ${{ env.KUBECONFIG_PATH }}/${{ env.E2E_CLUSTER_NAME }}/.kube/config - name: Download new spiderpool-agent image with tag ${{ needs.call_build_new_ci_image.outputs.imageTag }} - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: new-image-tar-spiderpool-agent path: test/.download - name: Download new spiderpool-controller image with tag ${{ needs.call_build_new_ci_image.outputs.imageTag }} - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: new-image-tar-spiderpool-controller path: test/.download diff --git a/.github/workflows/auto-version-release.yaml b/.github/workflows/auto-version-release.yaml index 324ff4ec63..0c06f60749 100644 --- a/.github/workflows/auto-version-release.yaml +++ b/.github/workflows/auto-version-release.yaml @@ -137,13 +137,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Download Chart Artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ needs.release-chart.outputs.artifact }} path: chart-package/ - name: Download Changelog Artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ needs.release-changelog.outputs.artifact }} path: changelog-result/ diff --git a/.github/workflows/build-image-base.yaml b/.github/workflows/build-image-base.yaml index 06452a840d..b4f6f5f2ad 100644 --- a/.github/workflows/build-image-base.yaml +++ b/.github/workflows/build-image-base.yaml @@ -148,7 +148,7 @@ jobs: mkdir -p image-digest/ - name: Download digests of all images built - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: image-digest/ diff --git a/.github/workflows/build-image-ci.yaml b/.github/workflows/build-image-ci.yaml index 68bd1b6f89..5f30c26e0e 100644 --- a/.github/workflows/build-image-ci.yaml +++ b/.github/workflows/build-image-ci.yaml @@ -301,13 +301,13 @@ jobs: mkdir -p image-digest/ - name: Download digests of all images built - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: image-digest/ name: image-digest-spiderpool-agent - name: Download digests of all images built - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: image-digest/ name: image-digest-spiderpool-controller diff --git a/.github/workflows/build-image-plugins.yaml b/.github/workflows/build-image-plugins.yaml index 121c81d426..e2f61b8879 100644 --- a/.github/workflows/build-image-plugins.yaml +++ b/.github/workflows/build-image-plugins.yaml @@ -237,7 +237,7 @@ jobs: mkdir -p image-digest/ - name: Download digests of all images built - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: image-digest/ diff --git a/.github/workflows/call-release-changelog.yaml b/.github/workflows/call-release-changelog.yaml index 5c70620422..1b74be575a 100644 --- a/.github/workflows/call-release-changelog.yaml +++ b/.github/workflows/call-release-changelog.yaml @@ -126,7 +126,7 @@ jobs: ref: ${{ env.DEST_BRANCH }} - name: Download Artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: changelog_artifact path: ${{ env.DEST_DIRECTORY }} diff --git a/.github/workflows/call-release-chart.yaml b/.github/workflows/call-release-chart.yaml index 54d61bdb3e..51268be109 100644 --- a/.github/workflows/call-release-chart.yaml +++ b/.github/workflows/call-release-chart.yaml @@ -115,7 +115,7 @@ jobs: persist-credentials: "true" - name: Download Artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: chart_package_artifact path: charts/ diff --git a/.github/workflows/call-release-doc.yaml b/.github/workflows/call-release-doc.yaml index 35fe0f5024..f8d59b6dfb 100644 --- a/.github/workflows/call-release-doc.yaml +++ b/.github/workflows/call-release-doc.yaml @@ -152,7 +152,7 @@ jobs: fetch-depth: 0 - name: Download Artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: website_package_artifact diff --git a/.github/workflows/call-update-githubpages.yaml b/.github/workflows/call-update-githubpages.yaml index d784fc12f6..a0806087fb 100644 --- a/.github/workflows/call-update-githubpages.yaml +++ b/.github/workflows/call-update-githubpages.yaml @@ -45,13 +45,13 @@ jobs: mkdir ${{ env.DEST_DIRECTORY }}/charts - name: Download Website Artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ inputs.site_artifact_name }} path: ${{ env.DEST_DIRECTORY }} - name: Download Chart Artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ inputs.chart_artifact_name }} path: ${{ env.DEST_DIRECTORY }}/charts diff --git a/.github/workflows/e2e-init.yaml b/.github/workflows/e2e-init.yaml index f30c6736ca..2fca9c05eb 100644 --- a/.github/workflows/e2e-init.yaml +++ b/.github/workflows/e2e-init.yaml @@ -110,13 +110,13 @@ jobs: bash ./test/scripts/install-tools.sh - name: Download spiderpool-agent image - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: image-tar-spiderpool-agent path: test/.download - name: Download spiderpool-controller image - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: image-tar-spiderpool-controller path: test/.download diff --git a/.github/workflows/trivy-scan-image.yaml b/.github/workflows/trivy-scan-image.yaml index 19e9bbdd7f..6cf13b99c0 100644 --- a/.github/workflows/trivy-scan-image.yaml +++ b/.github/workflows/trivy-scan-image.yaml @@ -24,13 +24,13 @@ jobs: ref: ${{ inputs.ref }} - name: Download spiderpool-agent image - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: image-tar-spiderpool-agent path: test/.download - name: Download spiderpool-controller image - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: image-tar-spiderpool-controller path: test/.download