Skip to content

Commit 4505947

Browse files
Update dependencies and workflows
1 parent a6df470 commit 4505947

File tree

4 files changed

+34
-27
lines changed

4 files changed

+34
-27
lines changed

.github/workflows/build.yaml

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
11
on:
22
push:
3-
branches: [ main ]
3+
branches: [main]
44
pull_request:
5-
branches: [ main ]
5+
branches: [main]
66
workflow_dispatch:
77

88
jobs:
99
build:
10-
1110
runs-on: ubuntu-latest
1211

1312
steps:
14-
- uses: actions/checkout@v4
15-
- uses: actions/setup-node@v4
16-
with:
17-
node-version: '18'
18-
cache: 'npm'
19-
- name: Install global dependencies
20-
run: npm install -g typescript vsce
21-
- name: npm-ci
22-
run: npm ci
23-
- name: npm-compile
24-
run: npm run compile
25-
- name: vsce package
26-
run: vsce package
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: "22"
17+
cache: "npm"
18+
- name: Install global dependencies
19+
run: npm install -g typescript @vscode/vsce
20+
- name: npm-ci
21+
run: npm ci
22+
- name: npm-compile
23+
run: npm run compile
24+
- name: vsce package
25+
run: vsce package

.github/workflows/publishTags.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-node@v4
1313
with:
14-
node-version: '16'
15-
cache: 'npm'
14+
node-version: "22"
15+
cache: "npm"
1616
- run: npm ci
1717
- name: Publish to Open VSX Registry
1818
uses: HaaLeo/publish-vscode-extension@v1

package-lock.json

Lines changed: 10 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"sponsor": {
1919
"url": "https://github.com/sponsors/ChrisChinchilla"
2020
},
21-
"version": "0.30.3",
21+
"version": "0.31.0",
2222
"engines": {
23-
"vscode": "^1.100.0",
23+
"vscode": "^1.106.0",
2424
"node": ">=20 <=22.11"
2525
},
2626
"categories": [
@@ -133,17 +133,17 @@
133133
"test-compile": "tsc -p ./"
134134
},
135135
"devDependencies": {
136-
"@aws-sdk/client-s3": "^3.820.0",
136+
"@aws-sdk/client-s3": "^3.932.0",
137137
"@types/mocha": "^10.0.10",
138-
"@types/node": "^22.15.27",
138+
"@types/node": "^24.10.1",
139139
"@types/unzipper": "^0.10.11",
140-
"@types/vscode": "^1.100.0",
140+
"@types/vscode": "^1.106.0",
141141
"@types/which": "^3.0.4",
142142
"@typescript-eslint/eslint-plugin": "^8.33.0",
143-
"@typescript-eslint/parser": "^8.33.0",
143+
"@typescript-eslint/parser": "^8.46.4",
144144
"eslint": "^9.27.0",
145145
"mocha": "^11.5.0",
146-
"ts-loader": "^9.5.2",
146+
"ts-loader": "^9.5.4",
147147
"tslint": "^6.1.3",
148148
"typescript": "^5.8.3",
149149
"unzipper": "~0.12.3",

0 commit comments

Comments
 (0)