Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: github/codeql-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.26.2
Choose a base ref
...
head repository: github/codeql-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.26.3
Choose a head ref
  • 8 commits
  • 7 files changed
  • 4 contributors

Commits on Aug 14, 2024

  1. Update changelog and version after v3.26.2

    github-actions[bot] committed Aug 14, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    crazy-max CrazyMax
    Copy the full SHA
    25a5b8f View commit details
  2. Update checked-in dependencies

    github-actions[bot] committed Aug 14, 2024
    Copy the full SHA
    676519a View commit details

Commits on Aug 15, 2024

  1. Merge pull request #2426 from github/mergeback/v3.26.2-to-main-429e1977

    Mergeback v3.26.2 refs/heads/releases/v3 into main
    alexet authored Aug 15, 2024
    Copy the full SHA
    5c681ef View commit details

Commits on Aug 19, 2024

  1. Fix writing diagnostics on Windows

    Remove colons from the generated filename so it is valid on Windows.
    henrymercer committed Aug 19, 2024
    Copy the full SHA
    e5a6587 View commit details
  2. Add changelog note

    henrymercer committed Aug 19, 2024
    Copy the full SHA
    e2bb5a2 View commit details
  3. Merge pull request #2430 from github/henrymercer/windows-diagnostics-fix

    Fix writing diagnostics on Windows
    henrymercer authored Aug 19, 2024
    Copy the full SHA
    b187c86 View commit details
  4. Update changelog for v3.26.3

    github-actions[bot] committed Aug 19, 2024
    Copy the full SHA
    e100ceb View commit details
  5. Merge pull request #2431 from github/update-v3.26.3-b187c86ce

    Merge main into releases/v3
    henrymercer authored Aug 19, 2024
    Copy the full SHA
    883d858 View commit details
Showing with 14 additions and 7 deletions.
  1. +4 −0 CHANGELOG.md
  2. +3 −1 lib/diagnostics.js
  3. +1 −1 lib/diagnostics.js.map
  4. +1 −1 node_modules/.package-lock.json
  5. +2 −2 package-lock.json
  6. +1 −1 package.json
  7. +2 −1 src/diagnostics.ts
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

## 3.26.3 - 19 Aug 2024

- Fix an issue where the CodeQL Action could not write diagnostic messages on Windows. This issue did not impact analysis quality. [#2430](https://github.com/github/codeql-action/pull/2430)

## 3.26.2 - 14 Aug 2024

- Update default CodeQL bundle version to 2.18.2. [#2417](https://github.com/github/codeql-action/pull/2417)
4 changes: 3 additions & 1 deletion lib/diagnostics.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/diagnostics.js.map

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

2 changes: 1 addition & 1 deletion node_modules/.package-lock.json

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

4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codeql",
"version": "3.26.2",
"version": "3.26.3",
"private": true,
"description": "CodeQL action",
"scripts": {
3 changes: 2 additions & 1 deletion src/diagnostics.ts
Original file line number Diff line number Diff line change
@@ -145,7 +145,8 @@ function writeDiagnostic(

const jsonPath = path.resolve(
diagnosticsPath,
`codeql-action-${diagnostic.timestamp}.json`,
// Remove colons from the timestamp as these are not allowed in Windows filenames.
`codeql-action-${diagnostic.timestamp.replaceAll(":", "")}.json`,
);

writeFileSync(jsonPath, JSON.stringify(diagnostic));