Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge releases/v3 into releases/v2 #2544

Merged
merged 24 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
c0098c8
Update changelog and version after v3.26.12
github-actions[bot] Oct 7, 2024
690a986
Update checked-in dependencies
github-actions[bot] Oct 7, 2024
572cc52
Mergeback v3.26.12 refs/heads/releases/v3 into main (#2530)
angelapwen Oct 7, 2024
47dd08d
Bump the npm group across 1 directory with 4 updates
dependabot[bot] Oct 8, 2024
422a279
Update checked-in dependencies
github-actions[bot] Oct 8, 2024
f31ce56
Merge pull request #2534 from github/dependabot/npm_and_yarn/npm-8179…
henrymercer Oct 8, 2024
dafc7dd
PR Checks: update artifacts tests
angelapwen Oct 8, 2024
9d1e406
Merge pull request #2535 from github/angelapwen/update-artifacts-tests
angelapwen Oct 8, 2024
502028f
Python: absolute basics
yoff Oct 9, 2024
65dd816
remove unused import
yoff Oct 9, 2024
ce5f900
formatting
yoff Oct 9, 2024
201e02e
rebuild the action
yoff Oct 9, 2024
eefb943
Don't use Zstandard bundles on Windows
henrymercer Oct 10, 2024
5b6984e
Assert that Windows downloads gzip
henrymercer Oct 10, 2024
38469af
Merge pull request #2537 from github/henrymercer/no-zstd-windows
henrymercer Oct 10, 2024
0c3e006
Merge pull request #2536 from yoff/python/ff-std-lib-extraction
yoff Oct 11, 2024
007ba25
Update changelog for v3.26.13
github-actions[bot] Oct 11, 2024
5329324
Update CHANGELOG.md
yoff Oct 14, 2024
f779452
Merge pull request #2539 from github/update-v3.26.13-0c3e00641
yoff Oct 14, 2024
e7e89aa
Revert "Update version and changelog for v2.26.12"
github-actions[bot] Oct 14, 2024
afab321
Revert "Update checked-in dependencies"
github-actions[bot] Oct 14, 2024
146668f
Merge remote-tracking branch 'origin/releases/v3' into backport-v2.26…
github-actions[bot] Oct 14, 2024
0b152e0
Update version and changelog for v2.26.13
github-actions[bot] Oct 14, 2024
6a42f43
Update checked-in dependencies
github-actions[bot] Oct 14, 2024
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
2 changes: 0 additions & 2 deletions .github/workflows/__zstd-bundle-fallback.yml

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

10 changes: 6 additions & 4 deletions .github/workflows/__zstd-bundle.yml

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

3 changes: 2 additions & 1 deletion .github/workflows/debug-artifacts-failure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
name: PR Check - Debug artifacts after failure
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CODEQL_ACTION_ARTIFACT_V4_UPGRADE: true
on:
push:
branches:
Expand Down Expand Up @@ -61,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
- name: Check expected artifacts exist
shell: bash
run: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Checks logs, SARIF, and database bundle debug artifacts exist and are accessible
# with download-artifact@v4 when CODEQL_ACTION_ARTIFACT_V4_UPGRADE is set to true.
# with download-artifact@v3 when CODEQL_ACTION_ARTIFACT_V4_UPGRADE is set to false.
name: PR Check - Debug artifact upload using artifact@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CODEQL_ACTION_ARTIFACT_V4_UPGRADE: true
CODEQL_ACTION_ARTIFACT_V4_UPGRADE: false
on:
push:
branches:
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
- name: Check expected artifacts exist
shell: bash
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/debug-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name: PR Check - Debug artifact upload
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CODEQL_ACTION_ARTIFACT_V4_UPGRADE: true
on:
push:
branches:
Expand Down Expand Up @@ -67,7 +68,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
- name: Check expected artifacts exist
shell: bash
run: |
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th

Note that the only difference between `v2` and `v3` of the CodeQL Action is the node version they support, with `v3` running on node 20 while we continue to release `v2` to support running on node 16. For example `3.22.11` was the first `v3` release and is functionally identical to `2.22.11`. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

## 2.26.13 - 14 Oct 2024

No user facing changes.

## 2.26.12 - 07 Oct 2024

- _Upcoming breaking change_: Add a deprecation warning for customers using CodeQL version 2.14.5 and earlier. These versions of CodeQL were discontinued on 24 September 2024 alongside GitHub Enterprise Server 3.10, and will be unsupported by CodeQL Action versions 3.27.0 and later and versions 2.27.0 and later. [#2520](https://github.com/github/codeql-action/pull/2520)
Expand Down
8 changes: 8 additions & 0 deletions lib/feature-flags.js

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

2 changes: 1 addition & 1 deletion lib/feature-flags.js.map

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions lib/init-action.js

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

Loading
Loading