Skip to content
This repository was archived by the owner on Apr 21, 2025. It is now read-only.

Commit d496b02

Browse files
committed
chore: Use Node.js 20 in CI
1 parent a18f727 commit d496b02

4 files changed

Lines changed: 185 additions & 132 deletions

File tree

.github/dependabot.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,3 @@ updates:
2323
labels:
2424
- 'type: chore \U0001F9F9'
2525
open-pull-requests-limit: 10
26-
ignore:
27-
- dependency-name: 'axios'
28-
versions:
29-
- '>= 1'

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
node-version: [18.x]
11+
node-version: [20.x]
1212
steps:
1313
- name: 'Checkout repository'
1414
uses: actions/checkout@v4

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"url": "https://github.com/bennycode/coinbase-pro-node/issues"
44
},
55
"dependencies": {
6-
"@types/node": "20.10.1",
6+
"@types/node": "20.10.3",
77
"@types/ws": "8.5.10",
8-
"axios": "1.6.0",
8+
"axios": "1.6.2",
99
"axios-retry": "4.0.0",
1010
"reconnecting-websocket": "4.4.0",
1111
"ws": "8.14.2",
@@ -14,27 +14,27 @@
1414
"description": "Coinbase Pro API for Node.js, written in TypeScript and covered by tests.",
1515
"devDependencies": {
1616
"@types/jasmine": "4.3.5",
17-
"@typescript-eslint/eslint-plugin": "6.13.1",
18-
"@typescript-eslint/parser": "6.13.1",
17+
"@typescript-eslint/eslint-plugin": "6.13.2",
18+
"@typescript-eslint/parser": "6.13.2",
1919
"c8": "8.0.1",
2020
"cross-env": "7.0.3",
2121
"dotenv-defaults": "5.0.2",
22-
"eslint": "8.54.0",
23-
"eslint-config-prettier": "9.0.0",
22+
"eslint": "8.55.0",
23+
"eslint-config-prettier": "9.1.0",
2424
"eslint-plugin-prettier": "5.0.1",
2525
"eslint-plugin-sort-keys-fix": "1.1.2",
2626
"eslint-plugin-typescript-sort-keys": "3.1.0",
2727
"generate-changelog": "1.8.0",
2828
"husky": "8.0.3",
2929
"jasmine": "3.99.0",
30-
"lint-staged": "15.1.0",
30+
"lint-staged": "15.2.0",
3131
"nock": "13.4.0",
3232
"prettier": "3.1.0",
3333
"rimraf": "5.0.5",
3434
"ts-node": "10.9.1",
3535
"typedoc": "0.25.4",
3636
"typedoc-plugin-markdown": "3.17.1",
37-
"typescript": "5.2.2"
37+
"typescript": "5.3.2"
3838
},
3939
"engines": {
4040
"node": ">= 18",

0 commit comments

Comments
 (0)