Skip to content

Commit afd3ad5

Browse files
committed
chore: update dependencies
1 parent 87429fe commit afd3ad5

File tree

6 files changed

+267
-325
lines changed

6 files changed

+267
-325
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ concurrency:
1818
jobs:
1919
build:
2020
name: 📦☁️ Release
21-
runs-on: ubuntu-22.04
21+
runs-on: ubuntu-24.04
2222
steps:
2323
- uses: actions/checkout@v4
2424

2525
- uses: actions/configure-pages@v5
2626

2727
- uses: actions/setup-node@v4
2828
with:
29-
node-version: '16.x'
29+
node-version: '22'
3030

3131
- name: ⚡ Install dependencies
3232
run: yarn install --frozen-lockfile

.github/workflows/lint.and.test.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ on:
1111
jobs:
1212
build:
1313
name: 🔨 Build
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-24.04
1515
steps:
1616
- uses: actions/checkout@v4
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: 16
19+
node-version: 22
2020

2121
- name: ⚡ Install dependencies
2222
run: yarn install --frozen-lockfile
@@ -26,15 +26,17 @@ jobs:
2626

2727
lint:
2828
name: 🔎 Lint
29-
runs-on: ubuntu-22.04
29+
runs-on: ubuntu-24.04
3030
steps:
3131
- uses: actions/checkout@v4
3232
- uses: actions/setup-node@v4
3333
with:
34-
node-version: 16
34+
node-version: 22
3535

3636
- name: ⚡ Install dependencies
3737
run: yarn install --frozen-lockfile
3838

3939
- name: 🔎 Lint
4040
run: yarn lint
41+
env:
42+
ESLINT_USE_FLAT_CONFIG: false

.github/workflows/release.when-pushed.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ on:
1010
jobs:
1111
release:
1212
name: 📦☁️ Publish artifact
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- uses: actions/checkout@v4
1616

1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: 16
19+
node-version: 22
2020
registry-url: 'https://registry.npmjs.org'
2121
scope: '@netresearch'
2222

.github/workflows/release.when-tagged.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ on:
1111
jobs:
1212
build:
1313
name: 📦☁️ Release
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-24.04
1515
steps:
1616
- uses: actions/checkout@v4
1717

1818
- uses: actions/setup-node@v4
1919
with:
20-
node-version: 16
20+
node-version: 22
2121
registry-url: 'https://registry.npmjs.org'
2222
scope: '@netresearch'
2323

@@ -31,7 +31,7 @@ jobs:
3131

3232
- uses: actions/setup-node@v4
3333
with:
34-
node-version: 16
34+
node-version: 22
3535
registry-url: 'https://npm.pkg.github.com'
3636
scope: '@netresearch'
3737

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@
1919
"prepack": "yarn build:lib"
2020
},
2121
"devDependencies": {
22-
"@types/node": "^8.10.66",
23-
"@typescript-eslint/eslint-plugin": "^7.0.0",
24-
"@typescript-eslint/parser": "^7.0.0",
25-
"eslint": "^8.45.0",
22+
"@types/node": "^22.0.0",
23+
"@typescript-eslint/eslint-plugin": "^7.18.0",
24+
"@typescript-eslint/parser": "^7.18.0",
25+
"eslint": "^9.8.0",
2626
"eslint-config-prettier": "^9.0.0",
2727
"prettier": "^3.0.0",
2828
"ts-node": "^10.9.1",
29-
"typedoc": "^0.25.0",
29+
"typedoc": "^0.26.5",
3030
"typescript": "^5.1.6"
3131
},
3232
"dependencies": {
3333
"axios": "1.7.2",
3434
"tslib": "^2.6.0"
3535
},
3636
"engines": {
37-
"node": ">=14"
37+
"node": ">=20"
3838
}
3939
}

0 commit comments

Comments
 (0)