Skip to content

Commit b974542

Browse files
authoredDec 13, 2023
Merge branch 'main' into nickfyson/node-20
2 parents 1de8705 + b995212 commit b974542

11 files changed

+18
-15
lines changed
 

‎.github/workflows/debug-artifacts-failure.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939
uses: ./.github/actions/prepare-test
4040
with:
4141
version: latest
42-
- uses: actions/setup-go@v4
42+
- uses: actions/setup-go@v5
4343
with:
4444
go-version: ^1.13.1
4545
- name: Setup Python on MacOS
46-
uses: actions/setup-python@v4
46+
uses: actions/setup-python@v5
4747
if: |
4848
matrix.os == 'macos-latest' && (
4949
matrix.version == 'stable-20220908' ||

‎.github/workflows/debug-artifacts.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ jobs:
4646
uses: ./.github/actions/prepare-test
4747
with:
4848
version: ${{ matrix.version }}
49-
- uses: actions/setup-go@v4
49+
- uses: actions/setup-go@v5
5050
with:
5151
go-version: ^1.13.1
5252
- name: Setup Python on MacOS
53-
uses: actions/setup-python@v4
53+
uses: actions/setup-python@v5
5454
if: |
5555
matrix.os == 'macos-latest' && (
5656
matrix.version == 'stable-20220908' ||

‎.github/workflows/pr-checks.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
uses: actions/checkout@v4
7272

7373
- name: Set up Python
74-
uses: actions/setup-python@v4
74+
uses: actions/setup-python@v5
7575
with:
7676
python-version: 3.11
7777

@@ -96,7 +96,7 @@ jobs:
9696

9797
steps:
9898
- name: Setup Python on MacOS
99-
uses: actions/setup-python@v4
99+
uses: actions/setup-python@v5
100100
if: |
101101
matrix.os == 'macos-latest' && (
102102
matrix.version == 'stable-20220908' ||

‎.github/workflows/python-deps.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
steps:
3939
- name: Setup Python on MacOS
40-
uses: actions/setup-python@v4
40+
uses: actions/setup-python@v5
4141
if: |
4242
matrix.os == 'macos-latest' && (
4343
matrix.version == 'stable-20220908' ||
@@ -151,7 +151,7 @@ jobs:
151151
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
152152
- uses: actions/checkout@v4
153153

154-
- uses: actions/setup-python@v4
154+
- uses: actions/setup-python@v5
155155
with:
156156
python-version: ${{ matrix.python_version }}
157157

‎.github/workflows/python312-windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: windows-latest
1919

2020
steps:
21-
- uses: actions/setup-python@v4
21+
- uses: actions/setup-python@v5
2222
with:
2323
python-version: 3.12
2424

‎.github/workflows/rebuild.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
npm run build
3232
3333
- name: Set up Python
34-
uses: actions/setup-python@v4
34+
uses: actions/setup-python@v5
3535
with:
3636
python-version: 3.11
3737

‎.github/workflows/update-supported-enterprise-server-versions.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Setup Python
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: "3.7"
2020
- name: Checkout CodeQL Action

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th
55
## [UNRELEASED]
66

77
- [v3+ only] The CodeQL Action now runs on Node.js v20. [#2006](https://github.com/github/codeql-action/pull/2006)
8+
9+
## 2.22.10 - 12 Dec 2023
10+
811
- Update default CodeQL bundle version to 2.15.4. [#2016](https://github.com/github/codeql-action/pull/2016)
912

1013
## 2.22.9 - 07 Dec 2023

‎node_modules/.package-lock.json

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

‎package-lock.json

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

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql",
3-
"version": "3.22.10",
3+
"version": "3.22.11",
44
"private": true,
55
"description": "CodeQL action",
66
"scripts": {

0 commit comments

Comments
 (0)
Please sign in to comment.