Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
9c39f0a
Bump actions/download-artifact from 5 to 6 in /.github/workflows
dependabot[bot] Oct 27, 2025
44aeac1
Merge branch 'main' into dependabot/github_actions/dot-github/workflo…
mbg Oct 28, 2025
8d50be3
Merge pull request #3245 from github/dependabot/github_actions/dot-gi…
henrymercer Oct 30, 2025
cbcb06a
Update changelog and version after v4.31.1
github-actions[bot] Oct 30, 2025
c7a5b09
Merge remote-tracking branch 'origin/main' into mergeback/v4.31.1-to-…
github-actions[bot] Oct 30, 2025
e781179
Rebuild
github-actions[bot] Oct 30, 2025
b2bffa6
Remove unused `console-log-level` dependency
henrymercer Oct 30, 2025
aab1c2f
Merge pull request #3253 from github/mergeback/v4.31.1-to-main-5fe9434c
henrymercer Oct 30, 2025
514ff4d
Merge pull request #3256 from github/henrymercer/resolve-bad-merge
henrymercer Oct 30, 2025
2a3599c
Run lightweight workflows on `ubuntu-slim`
henrymercer Oct 30, 2025
f0e9bf0
Make `isEnablementError` case-insensitive
mbg Oct 30, 2025
cc88437
Merge pull request #3257 from github/henrymercer/ubuntu-slim
henrymercer Oct 30, 2025
9576b5c
Merge pull request #3258 from github/mbg/enablement-errors/case-insen…
mbg Oct 30, 2025
752a642
Update changelog for v4.31.2
github-actions[bot] Oct 30, 2025
8a06050
Merge pull request #3259 from github/update-v4.31.2-9576b5cbe
mbg Oct 30, 2025
3b96745
Set up Python in mergeback workflow
henrymercer Oct 30, 2025
0499de3
Merge pull request #3261 from github/henrymercer/setup-python
henrymercer Oct 30, 2025
23a6333
Revert "Update version and changelog for v3.31.1"
github-actions[bot] Oct 30, 2025
8e9caa5
Revert "Rebuild"
github-actions[bot] Oct 30, 2025
d3cd47d
Merge remote-tracking branch 'origin/releases/v4' into backport-v3.31…
github-actions[bot] Oct 30, 2025
09db904
Update version and changelog for v3.31.2
github-actions[bot] Oct 30, 2025
c6eb09d
Rebuild
github-actions[bot] Oct 30, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/release-initialise/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ runs:
shell: bash

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.12
python-version: '3.12'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-expected-release-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defaults:

jobs:
check-expected-release-files:
runs-on: ubuntu-latest
runs-on: ubuntu-slim

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/debug-artifacts-failure-safe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
- name: Check expected artifacts exist
run: |
LANGUAGES="cpp csharp go java javascript python"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/debug-artifacts-safe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
- name: Check expected artifacts exist
run: |
VERSIONS="stable-v2.20.3 default linked nightly-latest"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-pr-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:
jobs:
sizeup:
name: Label PR with size
runs-on: ubuntu-latest
runs-on: ubuntu-slim

steps:
- name: Run sizeup
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/post-release-mergeback.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ defaults:

jobs:
merge-back:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
environment: Automation
if: github.repository == 'github/codeql-action'
env:
Expand All @@ -48,6 +48,9 @@ jobs:
with:
fetch-depth: 0 # ensure we have all tags and can push commits
- uses: actions/setup-node@v6
- uses: actions/setup-python@v6
with:
python-version: '3.12'

- name: Update git config
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ defaults:
jobs:
prepare:
name: "Prepare release"
runs-on: ubuntu-latest
runs-on: ubuntu-slim
if: github.repository == 'github/codeql-action'

permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-immutable-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defaults:

jobs:
publish:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
permissions:
contents: read
id-token: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defaults:
jobs:
update-bundle:
if: github.event.release.prerelease && startsWith(github.event.release.tag_name, 'codeql-bundle-')
runs-on: ubuntu-latest
runs-on: ubuntu-slim
permissions:
contents: write # needed to push commits
pull-requests: write # needed to create pull requests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

update:
timeout-minutes: 45
runs-on: ubuntu-latest
runs-on: ubuntu-slim
if: github.event_name == 'workflow_dispatch'
needs: [prepare]
env:
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
backport:
timeout-minutes: 45
runs-on: ubuntu-latest
runs-on: ubuntu-slim
environment: Automation
needs: [prepare]
if: ${{ (github.event_name == 'push') && needs.prepare.outputs.backport_target_branches != '[]' }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
update-supported-enterprise-server-versions:
name: Update Supported Enterprise Server Versions
timeout-minutes: 45
runs-on: ubuntu-latest
runs-on: ubuntu-slim
if: github.repository == 'github/codeql-action'
permissions:
contents: write # needed to push commits
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs.

## 3.31.2 - 30 Oct 2025

No user facing changes.

## 3.31.1 - 30 Oct 2025

- The `add-snippets` input has been removed from the `analyze` action. This input has been deprecated since CodeQL Action 3.26.4 in August 2024 when this removal was announced.
Expand Down
4 changes: 1 addition & 3 deletions lib/analyze-action-post.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 4 additions & 6 deletions lib/analyze-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions lib/autobuild-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 4 additions & 6 deletions lib/init-action-post.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 4 additions & 6 deletions lib/init-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions lib/resolve-environment-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 4 additions & 6 deletions lib/setup-codeql-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions lib/start-proxy-action-post.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading