Skip to content

Commit 5b870bd

Browse files
Bump actions/download-artifact from 4 to 7
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 2019f45 commit 5b870bd

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/post-benchmark-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v6
1818

1919
- name: Download Artifact
20-
uses: actions/download-artifact@v4
20+
uses: actions/download-artifact@v7
2121
with:
2222
github-token: "${{ secrets.GITHUB_TOKEN }}"
2323
run-id: ${{ github.event.workflow_run.id }}

.github/workflows/post-benchmark-ssr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v6
1818

1919
- name: Download Artifact
20-
uses: actions/download-artifact@v4
20+
uses: actions/download-artifact@v7
2121
with:
2222
github-token: "${{ secrets.GITHUB_TOKEN }}"
2323
run-id: ${{ github.event.workflow_run.id }}

.github/workflows/post-benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v6
1717

1818
- name: Download result artifacts
19-
uses: actions/download-artifact@v4
19+
uses: actions/download-artifact@v7
2020
with:
2121
github-token: "${{ secrets.GITHUB_TOKEN }}"
2222
run-id: ${{ github.event.workflow_run.id }}

.github/workflows/post-size-cmp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
uses: actions/checkout@v6
1818

1919
- name: Download Artifact (master)
20-
uses: actions/download-artifact@v4
20+
uses: actions/download-artifact@v7
2121
with:
2222
github-token: "${{ secrets.GITHUB_TOKEN }}"
2323
run-id: ${{ github.event.workflow_run.id }}
2424
name: size-cmp-master-info
2525
path: "size-cmp-master-info/"
2626

2727
- name: Download Artifact (PR)
28-
uses: actions/download-artifact@v4
28+
uses: actions/download-artifact@v7
2929
with:
3030
github-token: "${{ secrets.GITHUB_TOKEN }}"
3131
run-id: ${{ github.event.workflow_run.id }}

.github/workflows/publish-api-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v6
1616

1717
- name: Download build artifact
18-
uses: actions/download-artifact@v4
18+
uses: actions/download-artifact@v7
1919
with:
2020
github-token: "${{ secrets.GITHUB_TOKEN }}"
2121
run-id: ${{ github.event.workflow_run.id }}
@@ -24,7 +24,7 @@ jobs:
2424

2525
- if: github.event.workflow_run.event == 'pull_request'
2626
name: Download pr info
27-
uses: actions/download-artifact@v4
27+
uses: actions/download-artifact@v7
2828
with:
2929
github-token: "${{ secrets.GITHUB_TOKEN }}"
3030
run-id: ${{ github.event.workflow_run.id }}

.github/workflows/publish-website.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v6
1616

1717
- name: Download build artifact
18-
uses: actions/download-artifact@v4
18+
uses: actions/download-artifact@v7
1919
with:
2020
github-token: "${{ secrets.GITHUB_TOKEN }}"
2121
run-id: ${{ github.event.workflow_run.id }}
@@ -24,7 +24,7 @@ jobs:
2424

2525
- if: github.event.workflow_run.event == 'pull_request'
2626
name: Download pr info
27-
uses: actions/download-artifact@v4
27+
uses: actions/download-artifact@v7
2828
with:
2929
github-token: "${{ secrets.GITHUB_TOKEN }}"
3030
run-id: ${{ github.event.workflow_run.id }}

0 commit comments

Comments
 (0)