Skip to content

Commit a673f29

Browse files
authored
chore: Update runner to Node 18 (#1230)
1 parent 8eb6011 commit a673f29

File tree

5 files changed

+245
-157
lines changed

5 files changed

+245
-157
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
release:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
15-
- uses: actions/setup-node@v3
15+
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 16
17+
node-version: 18
1818
- run: npm i -g vsce ovsx
1919
- run: yarn install
2020
- run: yarn run gh:release

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
git config --global core.autocrlf false
1717
git config --global core.eol lf
1818
19-
- uses: actions/checkout@v3
20-
- uses: actions/setup-node@v3
19+
- uses: actions/checkout@v4
20+
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 16
22+
node-version: 18
2323

2424
# The vue I18next framework fixture tests rely on the documents getting recognized as `vue` documents by VSCode.
2525
# We set the `file.association` in the tests' .vscode/settings.json. However, `vue` is not a language identifier

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
"vue-i18n": "^8.22.4",
133133
"vue-material-design-icons": "^4.12.1",
134134
"vuex": "^3.6.2",
135-
"webpack": "^4.46.0",
135+
"webpack": "^4.47.0",
136136
"webpack-cli": "^3.3.12",
137137
"webpack-filter-warnings-plugin": "^1.2.1"
138138
},

webpack.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const config = {
1515
},
1616
entry: './src/extension.ts',
1717
output: {
18+
hashFunction: 'sha256',
1819
path: path.resolve(__dirname, 'dist'),
1920
filename: 'extension.js',
2021
libraryTarget: 'commonjs2',

0 commit comments

Comments
 (0)