Skip to content

Commit

Permalink
chore: Update runner to Node 18 (#1230)
Browse files Browse the repository at this point in the history
  • Loading branch information
kibertoad authored Nov 1, 2024
1 parent 8eb6011 commit a673f29
Show file tree
Hide file tree
Showing 5 changed files with 245 additions and 157 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
- run: npm i -g vsce ovsx
- run: yarn install
- run: yarn run gh:release
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18

# The vue I18next framework fixture tests rely on the documents getting recognized as `vue` documents by VSCode.
# We set the `file.association` in the tests' .vscode/settings.json. However, `vue` is not a language identifier
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"vue-i18n": "^8.22.4",
"vue-material-design-icons": "^4.12.1",
"vuex": "^3.6.2",
"webpack": "^4.46.0",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12",
"webpack-filter-warnings-plugin": "^1.2.1"
},
Expand Down
1 change: 1 addition & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const config = {
},
entry: './src/extension.ts',
output: {
hashFunction: 'sha256',
path: path.resolve(__dirname, 'dist'),
filename: 'extension.js',
libraryTarget: 'commonjs2',
Expand Down
Loading

0 comments on commit a673f29

Please sign in to comment.