Skip to content
Merged
4 changes: 2 additions & 2 deletions .github/workflows/job-compile-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Use Node.js 16
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20

- name: Install Dependencies
run: yarn install ${{ inputs.yarn-args }}
Expand Down
6 changes: 3 additions & 3 deletions Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6542,7 +6542,7 @@
"build": "yarn prep:dts && echo [Building TypeScript code] && tsc --build tsconfig.json"
},
"devDependencies": {
"@octokit/rest": "^20.1.1",
"@octokit/rest": "^21.1.1",
"@types/glob": "^7.2.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
Expand Down Expand Up @@ -6590,7 +6590,7 @@
"xml2js": "^0.6.2"
},
"dependencies": {
"@github/copilot-language-server": "^1.266.0",
"@github/copilot-language-server": "^1.273.0",
"@vscode/extension-telemetry": "^0.9.6",
"chokidar": "^3.6.0",
"comment-json": "^4.2.3",
Expand All @@ -6613,7 +6613,7 @@
"which": "^2.0.2"
},
"resolutions": {
"postcss": "^8.4.31",
"postcss": "^8.5.3",
"gulp-typescript/**/glob-parent": "^5.1.2"
}
}
2 changes: 1 addition & 1 deletion Extension/translations_auto_pr.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ if (existingUserEmail === undefined) {
cp.execSync(`git config --local user.email "${existingUserEmail}"`);
}

console.log(`pushing to remove branch (git push -f origin ${branchName})`);
console.log(`pushing to remote branch (git push -f origin ${branchName})`);
cp.execSync(`git push -f origin ${branchName}`);

console.log("Checking if there is already a pull request...");
Expand Down
Loading
Loading