Skip to content

Commit 5a219e7

Browse files
build(deps): bump actions/download-artifact from 3 to 4 (#236)
* build(deps): bump actions/download-artifact from 3 to 4 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * bump upload-artifact --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Peter Evans <[email protected]>
1 parent fb37f44 commit 5a219e7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
- run: npm run format-check
3030
- run: npm run lint
3131
- run: npm run test
32-
- uses: actions/upload-artifact@v3
32+
- uses: actions/upload-artifact@v4
3333
with:
3434
name: dist
3535
path: dist
36-
- uses: actions/upload-artifact@v3
36+
- uses: actions/upload-artifact@v4
3737
with:
3838
name: action.yml
3939
path: action.yml
@@ -48,12 +48,12 @@ jobs:
4848
steps:
4949
- uses: actions/checkout@v4
5050
- if: matrix.target == 'built' || github.event_name == 'pull_request'
51-
uses: actions/download-artifact@v3
51+
uses: actions/download-artifact@v4
5252
with:
5353
name: dist
5454
path: dist
5555
- if: matrix.target == 'built' || github.event_name == 'pull_request'
56-
uses: actions/download-artifact@v3
56+
uses: actions/download-artifact@v4
5757
with:
5858
name: action.yml
5959
path: .
@@ -87,7 +87,7 @@ jobs:
8787
runs-on: ubuntu-latest
8888
steps:
8989
- uses: actions/checkout@v4
90-
- uses: actions/download-artifact@v3
90+
- uses: actions/download-artifact@v4
9191
with:
9292
name: dist
9393
path: dist

0 commit comments

Comments
 (0)