Skip to content

Commit c47173a

Browse files
committed
fixup: bump actions
1 parent f897b12 commit c47173a

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/ci.yaml

+13-13
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: ci
22

33
on:
44
pull_request:
5-
branches: main
5+
branches: [main]
66
push:
7-
branches: main
8-
tags: v*
7+
branches: [main]
8+
tags: [v*]
99

1010
jobs:
1111
test:
@@ -16,11 +16,11 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-latest, macos-latest, windows-latest]
19-
node-version: ['18', '20']
19+
node-version: ['18', '20', '22']
2020

2121
steps:
2222
- name: Checkout source
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
- name: Install Node.js and dependencies
2626
uses: mcous/js/actions/setup@main
@@ -31,7 +31,7 @@ jobs:
3131
run: pnpm coverage
3232

3333
- name: Upload coverage
34-
uses: coverallsapp/github-action@f350da2c033043742f89e8c0b7b5145a1616da6d
34+
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b
3535
with:
3636
flag-name: node-${{ matrix.node-version }}-os-${{ matrix.os }}
3737
parallel: true
@@ -42,7 +42,7 @@ jobs:
4242
needs: test
4343

4444
steps:
45-
- uses: coverallsapp/github-action@f350da2c033043742f89e8c0b7b5145a1616da6d
45+
- uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b
4646
with:
4747
parallel-finished: true
4848

@@ -52,7 +52,7 @@ jobs:
5252

5353
steps:
5454
- name: Checkout source
55-
uses: actions/checkout@v3
55+
uses: actions/checkout@v4
5656

5757
- name: Install Node.js and dependencies
5858
uses: mcous/js/actions/setup@main
@@ -61,7 +61,7 @@ jobs:
6161
run: pnpm build-and-check
6262

6363
- name: Upload publish artifact
64-
uses: actions/upload-artifact@v3
64+
uses: actions/upload-artifact@v4
6565
with:
6666
name: npm-dist
6767
path: dist
@@ -78,16 +78,16 @@ jobs:
7878

7979
steps:
8080
- name: Checkout source
81-
uses: actions/checkout@v3
81+
uses: actions/checkout@v4
8282

8383
- name: Install Node.js
84-
uses: actions/setup-node@v3
84+
uses: actions/setup-node@v4
8585
with:
86-
node-version: '18'
86+
node-version: '22'
8787
registry-url: https://registry.npmjs.org
8888

8989
- name: Download publish artifact
90-
uses: actions/download-artifact@v3
90+
uses: actions/download-artifact@v4
9191
with:
9292
name: npm-dist
9393
path: dist

0 commit comments

Comments
 (0)