From a7a72e7ca3c2bbf127b65fdcf1b5b85fbd2aad19 Mon Sep 17 00:00:00 2001 From: Alan Clucas Date: Fri, 10 Jan 2025 10:28:07 +0000 Subject: [PATCH] fix: update upload-artifact and download-artifact (#14070) Signed-off-by: Alan Clucas --- .github/dependabot.yml | 4 ---- .github/workflows/ci-build.yaml | 4 ++-- .github/workflows/docs.yaml | 2 +- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1b590db438fd..40a43b0f02da 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -64,10 +64,6 @@ updates: schedule: interval: "weekly" day: "saturday" - ignore: - # temporarily ignore until https://github.com/actions/download-artifact/issues/249 is resolved - - dependency-name: "actions/download-artifact" - - dependency-name: "actions/upload-artifact" # ignore all non-security updates: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#open-pull-requests-limit open-pull-requests-limit: 0 labels: diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 9d1d23dae820..e185e91e9a12 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -205,7 +205,7 @@ jobs: cache-from: type=gha cache-to: type=gha,mode=max - name: Upload - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: ${{matrix.image}}_image.tar path: /tmp/${{matrix.image}}_image.tar @@ -323,7 +323,7 @@ jobs: echo " token: xxxxxx" >> $KUBECONFIG until kubectl cluster-info ; do sleep 10s ; done - name: Download images - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 + uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 with: pattern: '*_image.tar' path: /tmp diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 54157f925cd4..b16e1a62bbd2 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -40,7 +40,7 @@ jobs: run: git diff --exit-code # Upload the site so reviewers see it. - name: Upload Docs Site - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: docs path: site