From 6d0863f655e4422c179aeab53e788a88471fb43a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 03:01:54 +0000 Subject: [PATCH] Bump actions/download-artifact from 4 to 6 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/post-benchmark-core.yml | 2 +- .github/workflows/post-benchmark-ssr.yml | 2 +- .github/workflows/post-benchmark.yml | 2 +- .github/workflows/post-size-cmp.yml | 4 ++-- .github/workflows/publish-api-docs.yml | 4 ++-- .github/workflows/publish-website.yml | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/post-benchmark-core.yml b/.github/workflows/post-benchmark-core.yml index c9c47eb86f2..100074c35c4 100644 --- a/.github/workflows/post-benchmark-core.yml +++ b/.github/workflows/post-benchmark-core.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v4 - name: Download Artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: github-token: "${{ secrets.GITHUB_TOKEN }}" run-id: ${{ github.event.workflow_run.id }} diff --git a/.github/workflows/post-benchmark-ssr.yml b/.github/workflows/post-benchmark-ssr.yml index 11319fd5d3e..029223e29c1 100644 --- a/.github/workflows/post-benchmark-ssr.yml +++ b/.github/workflows/post-benchmark-ssr.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v4 - name: Download Artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: github-token: "${{ secrets.GITHUB_TOKEN }}" run-id: ${{ github.event.workflow_run.id }} diff --git a/.github/workflows/post-benchmark.yml b/.github/workflows/post-benchmark.yml index 2350a74a843..066a95799f2 100644 --- a/.github/workflows/post-benchmark.yml +++ b/.github/workflows/post-benchmark.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 - name: Download result artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: github-token: "${{ secrets.GITHUB_TOKEN }}" run-id: ${{ github.event.workflow_run.id }} diff --git a/.github/workflows/post-size-cmp.yml b/.github/workflows/post-size-cmp.yml index 9cfe362dcea..df0fc8afa05 100644 --- a/.github/workflows/post-size-cmp.yml +++ b/.github/workflows/post-size-cmp.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v4 - name: Download Artifact (master) - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: github-token: "${{ secrets.GITHUB_TOKEN }}" run-id: ${{ github.event.workflow_run.id }} @@ -25,7 +25,7 @@ jobs: path: "size-cmp-master-info/" - name: Download Artifact (PR) - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: github-token: "${{ secrets.GITHUB_TOKEN }}" run-id: ${{ github.event.workflow_run.id }} diff --git a/.github/workflows/publish-api-docs.yml b/.github/workflows/publish-api-docs.yml index a889948aee4..a28b21fde93 100644 --- a/.github/workflows/publish-api-docs.yml +++ b/.github/workflows/publish-api-docs.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v4 - name: Download build artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: github-token: "${{ secrets.GITHUB_TOKEN }}" run-id: ${{ github.event.workflow_run.id }} @@ -24,7 +24,7 @@ jobs: - if: github.event.workflow_run.event == 'pull_request' name: Download pr info - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: github-token: "${{ secrets.GITHUB_TOKEN }}" run-id: ${{ github.event.workflow_run.id }} diff --git a/.github/workflows/publish-website.yml b/.github/workflows/publish-website.yml index a12f627f30d..114a6027440 100644 --- a/.github/workflows/publish-website.yml +++ b/.github/workflows/publish-website.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v4 - name: Download build artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: github-token: "${{ secrets.GITHUB_TOKEN }}" run-id: ${{ github.event.workflow_run.id }} @@ -24,7 +24,7 @@ jobs: - if: github.event.workflow_run.event == 'pull_request' name: Download pr info - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: github-token: "${{ secrets.GITHUB_TOKEN }}" run-id: ${{ github.event.workflow_run.id }}