Skip to content

Commit

Permalink
Update GitHub Artifact Actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 8, 2024
1 parent 84e7d69 commit 017ecde
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
shell: bash
- run: yarn build-storybook --webpack-stats-json
shell: bash
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: bundles_${{ github.sha }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
needs: [test, bundle]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: bundles_${{ github.sha }}
- uses: peaceiris/actions-gh-pages@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/setup-node@v3
- run: yarn node ./bootstrap.js
shell: bash
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: bundles_${{ github.sha }}
- run: yarn flow-typed-install
Expand All @@ -45,7 +45,7 @@ jobs:
- uses: actions/setup-node@v3
- run: yarn test --coverage --projects ${{ matrix.path }}
shell: bash
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{ fromJSON(needs.setenv.outputs.workspaces)[strategy.job-index].name }}_coverage_${{ github.sha }}
path: |
Expand All @@ -59,7 +59,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: bundles_${{ github.sha }}
- uses: chromaui/action@v1
Expand All @@ -76,7 +76,7 @@ jobs:
flag: ${{ fromJSON(needs.setenv.outputs.workspaces).*.name }}
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ${{ matrix.flag }}_coverage_${{ github.sha }}
- uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 017ecde

Please sign in to comment.