Skip to content

Commit 795182c

Browse files
committed
chore: drop support for EoL nodejs versions
1 parent 850799f commit 795182c

6 files changed

Lines changed: 27 additions & 11 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
fail-fast: false
4141
matrix:
42-
node-version: [16, 18, 20, 22, 24]
42+
node-version: [20, 22, 24]
4343
steps:
4444
- name: Checkout branch
4545
uses: actions/checkout@v6
@@ -79,7 +79,7 @@ jobs:
7979
- name: Setup Node.js
8080
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

package-lock.json

Lines changed: 19 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"xmlhttprequest"
4242
],
4343
"engines": {
44-
"node": ">=14"
44+
"node": ">=20"
4545
},
4646
"repository": "Kong/httpsnippet",
4747
"bugs": {

0 commit comments

Comments
 (0)