Skip to content

Commit da5ac47

Browse files
chore: Update actions/upload-artifact from v1 to v4
actions/upload-artifact < v3 have been deprectated. For more information see https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/.
1 parent 1332ce4 commit da5ac47

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
run: npm run test:ci
2424
- name: Archive build
2525
if: success()
26-
uses: actions/upload-artifact@v1
26+
uses: actions/upload-artifact@v4
2727
with:
2828
name: dist
2929
path: dist
3030
- name: Archive code coverage result
3131
if: success()
32-
uses: actions/upload-artifact@v1
32+
uses: actions/upload-artifact@v4
3333
with:
3434
name: coverage
3535
path: coverage

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
run: npm run test:ci
2424
- name: Archive build
2525
if: success()
26-
uses: actions/upload-artifact@v1
26+
uses: actions/upload-artifact@v4
2727
with:
2828
name: deploy_dist
2929
path: dist
3030
- name: Archive code coverage result
3131
if: success()
32-
uses: actions/upload-artifact@v1
32+
uses: actions/upload-artifact@v4
3333
with:
3434
name: deploy_coverage
3535
path: coverage

0 commit comments

Comments
 (0)