Skip to content

Commit 33b10be

Browse files
authored
Merge pull request #1348 from github/henrymercer/use-codeql-2.11.3
Bump default CodeQL version to 2.11.3
2 parents 006bb00 + 718930b commit 33b10be

7 files changed

+16
-9
lines changed

.github/workflows/__export-file-baseline-information.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/script/check-node-modules.sh

+6-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,19 @@ if [ ! -z "$(git status --porcelain)" ]; then
77
>&2 echo "Failed: Repo should be clean before testing!"
88
exit 1
99
fi
10-
sudo npm install --force -g npm@latest
10+
# Pin npm to v8 since v9 doesn't support Node 12.
11+
# When updating this, make sure to update the npm version in
12+
# `.github/workflows/update-dependencies.yml` too.
13+
sudo npm install --force -g npm@^8.19.3
1114
# Reinstall modules and then clean to remove absolute paths
1215
# Use 'npm ci' instead of 'npm install' as this is intended to be reproducible
1316
npm ci
1417
npm run removeNPMAbsolutePaths
1518
# Check that repo is still clean
1619
if [ ! -z "$(git status --porcelain)" ]; then
1720
# If we get a fail here then the PR needs attention
18-
>&2 echo "Failed: node_modules are not up to date. Run 'npm ci && npm run removeNPMAbsolutePaths' on a macOS machine to update. Note it is important this command is run on macOS and not any other operating system as there is one dependency (fsevents) that is needed for macOS and may not be installed if the command is run on a Windows or Linux machine."
21+
>&2 echo "Failed: node_modules are not up to date. Add the 'Update dependencies' label to your PR to update them. Note it is important that node modules are updated on macOS and not any other operating system as there is one dependency (fsevents) that is needed for macOS and may not be installed if dependencies are updated on a Windows or Linux machine."
1922
git status
2023
exit 1
2124
fi
22-
echo "Success: node_modules are up to date"
25+
echo "Success: node_modules are up to date"

.github/workflows/update-dependencies.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ jobs:
2727
run: |
2828
git fetch origin "$BRANCH" --depth=1
2929
git checkout "origin/$BRANCH"
30-
sudo npm install --force -g npm@latest
30+
# Pin npm to v8 since v9 doesn't support Node 12.
31+
# When updating this, make sure to update the npm version in
32+
# `.github/workflows/script/check-node-modules.sh` too.
33+
sudo npm install --force -g npm@^8.19.3
3134
npm install
3235
npm ci
3336
npm run removeNPMAbsolutePaths

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
## [UNRELEASED]
44

5-
- Update the ML-powered additional query pack for JavaScript to version 0.4.0.
5+
- Update default CodeQL bundle version to 2.11.3. [#1348](https://github.com/github/codeql-action/pull/1348)
6+
- Update the ML-powered additional query pack for JavaScript to version 0.4.0. [#1351](https://github.com/github/codeql-action/pull/1351)
67

78
## 2.1.31 - 04 Nov 2022
89

lib/defaults.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"bundleVersion": "codeql-bundle-20221024"
2+
"bundleVersion": "codeql-bundle-20221105"
33
}

pr-checks/checks/export-file-baseline-information.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ steps:
2828
shell: bash
2929
run: |
3030
cd "$RUNNER_TEMP/results"
31-
expected_baseline_languages="cpp csharp go java js python ruby"
31+
expected_baseline_languages="cpp csharp go java js py ruby"
3232
3333
for lang in ${expected_baseline_languages}; do
3434
rule_name="${lang}/baseline/expected-extracted-files"

src/defaults.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"bundleVersion": "codeql-bundle-20221024"
2+
"bundleVersion": "codeql-bundle-20221105"
33
}

0 commit comments

Comments
 (0)