Skip to content

Commit 45b19f0

Browse files
committed
chore(deps): fix vulnerabilities
1 parent 26a5b5d commit 45b19f0

7 files changed

Lines changed: 424 additions & 302 deletions

File tree

.eslintrc.js

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -142,17 +142,11 @@ module.exports = {
142142
'@typescript-eslint/prefer-function-type': 'warn',
143143
'@typescript-eslint/indent': 'off',
144144
'@typescript-eslint/prefer-for-of': 'error',
145-
'@typescript-eslint/member-delimiter-style': [
146-
'warn',
147-
{
148-
multiline: { delimiter: 'none', requireLast: true },
149-
singleline: { delimiter: 'semi', requireLast: false },
150-
},
151-
],
145+
'@typescript-eslint/no-unsafe-function-type': 'off',
146+
'@typescript-eslint/no-empty-object-type': 'off',
152147
'@typescript-eslint/member-ordering': 'warn',
153148
'@typescript-eslint/no-explicit-any': 'warn',
154149
'@typescript-eslint/no-inferrable-types': 'off',
155-
'@typescript-eslint/no-parameter-properties': 'off',
156150
'@typescript-eslint/no-this-alias': 'off',
157151
'@typescript-eslint/no-unused-expressions': [
158152
'error',
@@ -191,6 +185,7 @@ module.exports = {
191185
'import/no-commonjs': 'off',
192186
'@typescript-eslint/explicit-function-return-type': 'off',
193187
'@typescript-eslint/no-var-requires': 'off',
188+
'@typescript-eslint/no-require-imports': 'off',
194189
},
195190
},
196191
{
@@ -203,6 +198,7 @@ module.exports = {
203198
'import/no-commonjs': 'off',
204199
'@typescript-eslint/explicit-function-return-type': 'off',
205200
'@typescript-eslint/no-var-requires': 'off',
201+
'@typescript-eslint/no-require-imports': 'off',
206202
},
207203
},
208204
],

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
node-version: [22.x, 24.x, 26.x]
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v6
18+
uses: actions/checkout@v7
1919
- name: Setup NodeJS ${{ matrix.node-version }}
20-
uses: actions/setup-node@v6
20+
uses: actions/setup-node@v7
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323
cache: 'npm'
@@ -42,7 +42,7 @@ jobs:
4242
needs: [build]
4343
steps:
4444
- name: Checkout
45-
uses: actions/checkout@v6
45+
uses: actions/checkout@v7
4646
with:
4747
fetch-depth: 0
4848
persist-credentials: true
@@ -52,7 +52,7 @@ jobs:
5252
git config user.email "ci@sclable.com"
5353
git config user.name "Sclable CI"
5454
- name: Setup NodeJS
55-
uses: actions/setup-node@v6
55+
uses: actions/setup-node@v7
5656
with:
5757
node-version: '24'
5858
registry-url: 'https://registry.npmjs.org'
@@ -79,7 +79,7 @@ jobs:
7979
needs: [publish]
8080
steps:
8181
- name: Checkout
82-
uses: actions/checkout@v6
82+
uses: actions/checkout@v7
8383
with:
8484
repository: ${{github.repository}}.wiki
8585
token: ${{ secrets.GIT_PUSH_TOKEN }}

0 commit comments

Comments
 (0)