Skip to content

Commit aaa6995

Browse files
authored
Merge branch 'main' into 320/format-using-shfmt
2 parents b0dd1e3 + 602eaf4 commit aaa6995

20 files changed

+155
-143
lines changed

.github/workflows/upgrade-tree-sitter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
3737
- name: Create pull request
3838
if: steps.verify-changed-files.outputs.files_changed == 'true'
39-
uses: peter-evans/create-pull-request@v5
39+
uses: peter-evans/create-pull-request@v6
4040
with:
4141
add-paths: server
4242
title: Auto upgrade tree-sitter-bash parser

.github/workflows/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: pnpm verify:bail
3535

3636
- name: Publish coverage to codecov.io
37-
uses: codecov/codecov-action@v3
37+
uses: codecov/codecov-action@v4
3838
if: success() && matrix.node-version == '20.x'
3939
with:
4040
token: ${{ secrets.CODECOV_TOKEN }}

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 18.20.0
1+
nodejs 18.20.1

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"typescript.tsdk": "./node_modules/typescript/lib",
99
"typescript.tsc.autoDetect": "off",
1010
"editor.codeActionsOnSave": {
11-
"source.fixAll.eslint": true
11+
"source.fixAll.eslint": "explicit"
1212
}
1313
}

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
},
1919
"devDependencies": {
2020
"@types/jest": "29.5.12",
21-
"@types/node": "18.19.28",
22-
"@typescript-eslint/eslint-plugin": "7.4.0",
23-
"@typescript-eslint/parser": "7.4.0",
21+
"@types/node": "18.19.30",
22+
"@typescript-eslint/eslint-plugin": "7.5.0",
23+
"@typescript-eslint/parser": "7.5.0",
2424
"eslint": "8.57.0",
2525
"eslint-config-prettier": "9.1.0",
2626
"eslint-plugin-jest": "27.9.0",
@@ -30,16 +30,16 @@
3030
"jest": "29.7.0",
3131
"prettier": "2.8.8",
3232
"ts-jest": "29.1.2",
33-
"typescript": "5.4.3",
33+
"typescript": "5.4.4",
3434
"vscode-languageserver": "8.0.2",
3535
"vscode-languageserver-textdocument": "1.0.11"
3636
},
3737
"resolutions": {
38-
"@types/vscode": "1.87.0"
38+
"@types/vscode": "1.88.0"
3939
},
4040
"engines": {
4141
"node": ">=16",
42-
"pnpm": "8.x"
42+
"pnpm": ">=8.x"
4343
},
4444
"jest": {
4545
"preset": "ts-jest",

0 commit comments

Comments
 (0)