Skip to content

Commit 5f8234e

Browse files
authored
chore: bump deps to fix vulns (#390)
* chore: bump deps to fix vulns * chore: drop support for EoL nodejs versions
1 parent 55cbe8b commit 5f8234e

File tree

6 files changed

+266
-267
lines changed

6 files changed

+266
-267
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout branch
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v6
2424
with:
2525
path: ${{ github.repository }}
2626

@@ -39,13 +39,13 @@ jobs:
3939
strategy:
4040
fail-fast: false
4141
matrix:
42-
node-version: [16, 18, 20]
42+
node-version: [20, 22, 24]
4343
steps:
4444
- name: Checkout branch
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v6
4646

4747
- name: Setup Node
48-
uses: actions/setup-node@v3
48+
uses: actions/setup-node@v6
4949
with:
5050
node-version: ${{ matrix.node-version }}
5151

@@ -72,14 +72,14 @@ jobs:
7272
steps:
7373
# checkout tag
7474
- name: Checkout code
75-
uses: actions/checkout@v4
75+
uses: actions/checkout@v6
7676
with:
7777
fetch-depth: 0
7878

7979
- name: Setup Node.js
80-
uses: actions/setup-node@v4
80+
uses: actions/setup-node@v6
8181
with:
82-
node-version: 20.9.0
82+
node-version: 24
8383
registry-url: 'https://registry.npmjs.org'
8484

8585
- name: Install

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222
token: ${{ secrets.PAT_INSOMNIA_INFRA }}
@@ -27,9 +27,9 @@ jobs:
2727
username: ${{ (github.event_name == 'workflow_dispatch' && github.actor) || 'insomnia-infra' }}
2828

2929
- name: Setup Node
30-
uses: actions/setup-node@v4
30+
uses: actions/setup-node@v6
3131
with:
32-
node-version: 20
32+
node-version: 24
3333

3434
- name: Install
3535
run: npm ci

.github/workflows/sast.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ jobs:
2121
if: (github.actor != 'dependabot[bot]')
2222

2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525
- uses: Kong/public-shared-actions/security-actions/semgrep@a18abf762d6e2444bcbfd20de70451ea1e3bc1b1

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
24

0 commit comments

Comments
 (0)