diff --git a/.github/workflows/post-benchmark-core.yml b/.github/workflows/post-benchmark-core.yml index c9c47eb86..100074c35 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 11319fd5d..029223e29 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 2350a74a8..066a95799 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 9cfe362dc..df0fc8afa 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 a889948ae..a28b21fde 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 a12f627f3..114a60274 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 }}