Skip to content

Commit e06d452

Browse files
build: 📦 github artifact actions to v4
1 parent 53a4f59 commit e06d452

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/actions/download-build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: composite
55
steps:
66
- name: Download dist folder
7-
uses: actions/download-artifact@v3
7+
uses: actions/download-artifact@v4
88
with:
99
name: library-dist-${{ github.sha }}
1010
path: dist

.github/actions/download-coverage-report/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: composite
55
steps:
66
- name: Download coverage report
7-
uses: actions/download-artifact@v3
7+
uses: actions/download-artifact@v4
88
with:
99
name: ngx-deploy-npm-coverage-report-${{ github.sha }}
1010
path: coverage/packages/ngx-deploy-npm

.github/actions/download-lint-report/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: composite
55
steps:
66
- name: Download lint report
7-
uses: actions/download-artifact@v3
7+
uses: actions/download-artifact@v4
88
with:
99
name: lint-report-${{ github.sha }}
1010
path: reports

.github/workflows/basic-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run: npx nx lint-report ngx-deploy-npm
1717

1818
- name: Archive lint report results
19-
uses: actions/upload-artifact@v3
19+
uses: actions/upload-artifact@v4
2020
with:
2121
name: lint-report-${{ github.sha }}
2222
path: reports
@@ -30,7 +30,7 @@ jobs:
3030
- run: npx nx build ngx-deploy-npm
3131

3232
- name: Archive build result
33-
uses: actions/upload-artifact@v3
33+
uses: actions/upload-artifact@v4
3434
with:
3535
name: library-dist-${{ github.sha }}
3636
path: dist
@@ -51,7 +51,7 @@ jobs:
5151

5252
- if: ${{ matrix.os == 'ubuntu-latest' }}
5353
name: Archive coverage report
54-
uses: actions/upload-artifact@v3
54+
uses: actions/upload-artifact@v4
5555
with:
5656
name: ngx-deploy-npm-coverage-report-${{ github.sha }}
5757
path: coverage/packages/ngx-deploy-npm/lcov.info

0 commit comments

Comments
 (0)