Skip to content

Commit 35dfea7

Browse files
chore: upgrade all deps 💣
1 parent 6981bea commit 35dfea7

File tree

6 files changed

+6159
-3806
lines changed

6 files changed

+6159
-3806
lines changed

‎.github/workflows/commitlint.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
CI: 'true'
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
20-
- uses: actions/setup-node@v3
20+
- uses: actions/setup-node@v4
2121
with:
2222
node-version: 20
2323
cache: npm

‎.github/workflows/deployment.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
CI: 'true'
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
20-
- uses: actions/setup-node@v3
20+
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 20
22+
node-version: 22
2323
cache: npm
2424

2525
- run: make install

‎.github/workflows/integration.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
CI: 'true'
2525

2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
with:
2929
fetch-depth: 0
30-
- uses: actions/setup-node@v3
30+
- uses: actions/setup-node@v4
3131
with:
3232
node-version: ${{ matrix.node }}
3333
cache: npm
@@ -47,18 +47,18 @@ jobs:
4747
CI: 'true'
4848

4949
steps:
50-
- uses: actions/checkout@v3
50+
- uses: actions/checkout@v4
5151
with:
5252
fetch-depth: 0
53-
- uses: actions/setup-node@v3
53+
- uses: actions/setup-node@v4
5454
with:
55-
node-version: 20
55+
node-version: 22
5656

5757
- run: make install
5858
- run: make compile
5959
- run: make coverage
6060

61-
- uses: devmasx/coverage-check-action@v1.1.0
61+
- uses: devmasx/coverage-check-action@v1.2.0
6262
with:
6363
type: lcov
6464
result_path: coverage/lcov.info

‎eslint.config.mjs

-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import * as os from 'os'
21
import nodev20 from '@strv/eslint-config-node/v20'
32
import nodeopt from '@strv/eslint-config-node/optional'
43
import nodestyle from '@strv/eslint-config-node/style'
@@ -7,7 +6,6 @@ import tsoptional from '@strv/eslint-config-typescript/optional'
76
import tsstyle from '@strv/eslint-config-typescript/style'
87
import mocha from '@strv/eslint-config-mocha'
98

10-
const lbstyle = os.platform() === 'win32' ? 'windows' : 'unix'
119
const globs = {
1210
mjs: '**/*.mjs',
1311
ts: '**/*.ts',
@@ -34,12 +32,6 @@ const config = [
3432
{ files: [globs.ts],
3533
languageOptions: {
3634
parserOptions: { project: './tsconfig.json' },
37-
},
38-
rules: {
39-
// This repository is configured so that upon checkout, git should convert line endings to platform-specific
40-
// defaults and convert them back to LF when checking in. As such, we must enforce CRLF endings on Windows,
41-
// otherwise the lint task would fail on Windows systems.
42-
'linebreak-style': ['error', lbstyle],
4335
} },
4436
]
4537

0 commit comments

Comments
 (0)