Skip to content

Commit dfa1948

Browse files
rhettjayGaryGSC
andauthored
fix: update jwt dep to fix npm audit issue (#175)
* update jwt dep to fix npm audit issue * update actions versions * update test runner to node-test * make linter happy * Update packages/fastify/package.json Co-authored-by: Gary Crye <[email protected]> * Update packages/jwt/package.json Co-authored-by: Gary Crye <[email protected]> * add back c8 * fix node test ts compat --------- Co-authored-by: Gary Crye <[email protected]>
1 parent 9da7395 commit dfa1948

File tree

7 files changed

+1560
-1886
lines changed

7 files changed

+1560
-1886
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
name: Audit
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: actions/setup-node@v3
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
1515
with:
1616
node-version-file: 'package.json'
1717
- run: npm audit --audit-level=critical
@@ -20,8 +20,8 @@ jobs:
2020
name: Build
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v3
24-
- uses: actions/setup-node@v3
23+
- uses: actions/checkout@v4
24+
- uses: actions/setup-node@v4
2525
with:
2626
node-version-file: 'package.json'
2727
cache: 'npm'
@@ -33,8 +33,8 @@ jobs:
3333
name: Lint
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v3
37-
- uses: actions/setup-node@v3
36+
- uses: actions/checkout@v4
37+
- uses: actions/setup-node@v4
3838
with:
3939
node-version-file: 'package.json'
4040
cache: 'npm'
@@ -46,8 +46,8 @@ jobs:
4646
name: Test
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@v3
50-
- uses: actions/setup-node@v3
49+
- uses: actions/checkout@v4
50+
- uses: actions/setup-node@v4
5151
with:
5252
node-version-file: 'package.json'
5353
cache: 'npm'

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
url: https://npm.pkg.github.com
4242

4343
steps:
44-
- uses: actions/checkout@v3
44+
- uses: actions/checkout@v4
4545
with:
4646
# Lerna needs the git history to automatically bump package versions
4747
fetch-depth: 0
@@ -53,7 +53,7 @@ jobs:
5353
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
5454

5555
- name: Setup Node
56-
uses: actions/setup-node@v3
56+
uses: actions/setup-node@v4
5757
with:
5858
node-version-file: 'package.json'
5959
# Publish to the provided registry...
@@ -112,7 +112,7 @@ jobs:
112112
packages: read
113113

114114
steps:
115-
- uses: actions/checkout@v3
115+
- uses: actions/checkout@v4
116116
with:
117117
# Lerna needs the git history to automatically bump package versions
118118
fetch-depth: 0
@@ -124,7 +124,7 @@ jobs:
124124
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
125125

126126
- name: Setup Node
127-
uses: actions/setup-node@v3
127+
uses: actions/setup-node@v4
128128
with:
129129
node-version-file: 'package.json'
130130

@@ -172,10 +172,10 @@ jobs:
172172
# Build documentation site
173173
steps:
174174
- name: Checkout
175-
uses: actions/checkout@v3
175+
uses: actions/checkout@v4
176176

177177
- name: Setup Node
178-
uses: actions/setup-node@v3
178+
uses: actions/setup-node@v4
179179
with:
180180
node-version-file: 'package.json'
181181

0 commit comments

Comments
 (0)