Skip to content

Commit ae950c4

Browse files
committed
Upgrade GitHub Actions
1 parent f2ea028 commit ae950c4

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ on:
77
jobs:
88
test:
99
runs-on: ubuntu-latest
10+
permissions:
11+
contents: read
1012
steps:
11-
- uses: actions/checkout@v3
12-
- uses: actions/setup-node@v3
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
1315
with:
1416
node-version-file: .nvmrc
1517
- id: node-cache
16-
uses: actions/cache@v3
18+
uses: actions/cache@v4
1719
with:
1820
path: node_modules
1921
key: ${{ runner.os }}-node-${{ hashFiles('**/.nvmrc') }}-${{ hashFiles('**/package-lock.json') }}
@@ -28,10 +30,10 @@ jobs:
2830
- run: npm run test:performance -s
2931
- run: base64 < ./tests/integration/__image_snapshots__/__diff_output__/* || true
3032
- run: mv coverage/lcov-report build || true
31-
- uses: coverallsapp/github-action@master
33+
- uses: coverallsapp/github-action@v2
3234
with:
3335
github-token: ${{ secrets.GITHUB_TOKEN }}
34-
- uses: actions/upload-artifact@v3
36+
- uses: actions/upload-artifact@v4
3537
with:
3638
name: reports
3739
path: public

0 commit comments

Comments
 (0)