Skip to content

Commit 0d77e2e

Browse files
Update GitHub Artifact Actions
1 parent 8ff992d commit 0d77e2e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/bundle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
shell: bash
1515
- run: yarn build-storybook --webpack-stats-json
1616
shell: bash
17-
- uses: actions/upload-artifact@v3
17+
- uses: actions/upload-artifact@v6
1818
with:
1919
name: bundles_${{ github.sha }}
2020
path: |

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
needs: [test, bundle]
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/download-artifact@v3
17+
- uses: actions/download-artifact@v7
1818
with:
1919
name: bundles_${{ github.sha }}
2020
- uses: peaceiris/actions-gh-pages@v3

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/setup-node@v3
2525
- run: yarn node ./bootstrap.js
2626
shell: bash
27-
- uses: actions/download-artifact@v3
27+
- uses: actions/download-artifact@v7
2828
with:
2929
name: bundles_${{ github.sha }}
3030
- run: yarn flow-typed-install
@@ -45,7 +45,7 @@ jobs:
4545
- uses: actions/setup-node@v3
4646
- run: yarn test --coverage --projects ${{ matrix.path }}
4747
shell: bash
48-
- uses: actions/upload-artifact@v3
48+
- uses: actions/upload-artifact@v6
4949
with:
5050
name: ${{ fromJSON(needs.setenv.outputs.workspaces)[strategy.job-index].name }}_coverage_${{ github.sha }}
5151
path: |
@@ -59,7 +59,7 @@ jobs:
5959
- uses: actions/checkout@v3
6060
with:
6161
fetch-depth: 0
62-
- uses: actions/download-artifact@v3
62+
- uses: actions/download-artifact@v7
6363
with:
6464
name: bundles_${{ github.sha }}
6565
- uses: chromaui/action@v1
@@ -76,7 +76,7 @@ jobs:
7676
flag: ${{ fromJSON(needs.setenv.outputs.workspaces).*.name }}
7777
steps:
7878
- uses: actions/checkout@v3
79-
- uses: actions/download-artifact@v3
79+
- uses: actions/download-artifact@v7
8080
with:
8181
name: ${{ matrix.flag }}_coverage_${{ github.sha }}
8282
- uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)