Skip to content

Commit f81da5c

Browse files
committed
chore(ci): update github actions versions
1 parent 157ff20 commit f81da5c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111

1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Set up Node.js
17-
uses: actions/setup-node@v2
17+
uses: actions/setup-node@v4
1818
with:
19-
node-version: '16'
19+
node-version: 20
2020

2121
- name: Install dependencies
2222
run: npm install
@@ -25,7 +25,7 @@ jobs:
2525
run: npm run build
2626

2727
- name: Upload build artifacts
28-
uses: actions/upload-artifact@v2
28+
uses: actions/upload-artifact@v4
2929
with:
3030
name: build-artifacts
3131
path: dist/

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111

1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Download build artifacts
17-
uses: actions/download-artifact@v2
17+
uses: actions/download-artifact@v4
1818
with:
1919
name: build-artifacts
2020

0 commit comments

Comments
 (0)