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.28.12
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.28.13
Choose a head ref
  • 20 commits
  • 26 files changed
  • 6 contributors

Commits on Mar 19, 2025

  1. build: sync some utility just instructions I had locally

    NlightNFotis committed Mar 19, 2025
    Copy the full SHA
    8b0dccd View commit details
  2. Update changelog and version after v3.28.12

    github-actions[bot] committed Mar 19, 2025
    Copy the full SHA
    ee6a063 View commit details
  3. Update checked-in dependencies

    github-actions[bot] committed Mar 19, 2025
    Copy the full SHA
    4637193 View commit details
  4. Merge pull request #2815 from github/mergeback/v3.28.12-to-main-5f8171a6

    Mergeback v3.28.12 refs/heads/releases/v3 into main
    smowton authored Mar 19, 2025
    Copy the full SHA
    df9f80e View commit details
  5. Update justfile

    Co-authored-by: Andrew Eisenberg <aeisenberg@github.com>
    NlightNFotis and aeisenberg authored Mar 19, 2025
    Copy the full SHA
    d271bde View commit details
  6. Update justfile

    Co-authored-by: Andrew Eisenberg <aeisenberg@github.com>
    NlightNFotis and aeisenberg authored Mar 19, 2025
    Copy the full SHA
    c74c378 View commit details
  7. Merge pull request #2813 from github/NlightNFotis/enhance_justfile

    build: sync some utility just instructions I had locally
    aeisenberg authored Mar 19, 2025
    Copy the full SHA
    c50c157 View commit details
  8. Overlay databases: use --overlay-changes

    This commit changes overlay database creation to use the
    --overlay-changes flag. It also implements Git-based file change
    detection to generate the list of files to extract for the overlay
    database.
    cklin committed Mar 19, 2025
    Copy the full SHA
    6be6984 View commit details

Commits on Mar 20, 2025

  1. Copy the full SHA
    6adda79 View commit details

Commits on Mar 21, 2025

  1. Introduce PullRequestBranches

    cklin committed Mar 21, 2025
    Copy the full SHA
    3e5446c View commit details
  2. Copy the full SHA
    d109dd5 View commit details
  3. build: refresh js files

    cklin committed Mar 21, 2025
    Copy the full SHA
    9c674ba View commit details
  4. Merge pull request #2817 from github/cklin/default-setup-diff-informed

    Support diff-informed queries under Default Setup
    cklin authored Mar 21, 2025
    Copy the full SHA
    ac67cff View commit details
  5. Copy the full SHA
    9825184 View commit details
  6. Add overlay-database-utils tests

    cklin committed Mar 21, 2025
    Copy the full SHA
    b98ae6c View commit details
  7. Merge pull request #2816 from github/cklin/overlay-file-list

    Overlay databases: use --overlay-changes
    cklin authored Mar 21, 2025
    Copy the full SHA
    bd1d9ab View commit details
  8. Diff-informed analysis: fix empty PR handling

    cklin committed Mar 21, 2025
    Copy the full SHA
    b361a91 View commit details
  9. Merge pull request #2818 from github/cklin/empty-pr-diff-range

    Diff-informed analysis: fix empty PR handling
    cklin authored Mar 21, 2025
    Copy the full SHA
    e0ea141 View commit details

Commits on Mar 24, 2025

  1. Update changelog for v3.28.13

    github-actions[bot] committed Mar 24, 2025
    Copy the full SHA
    82630c8 View commit details
  2. Merge pull request #2819 from github/update-v3.28.13-e0ea14102

    Merge main into releases/v3
    cklin authored Mar 24, 2025
    Copy the full SHA
    1b549b9 View commit details
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.28.13 - 24 Mar 2025

No user facing changes.

## 3.28.12 - 19 Mar 2025

- Dependency caching should now cache more dependencies for Java `build-mode: none` extractions. This should speed up workflows and avoid inconsistent alerts in some cases.
15 changes: 14 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ all: lint sync

# Lint source typescript
lint:
npm run lint -- --fix
npm run lint-fix

# Sync generated files (javascript and PR checks)
sync: build update-pr-checks
@@ -15,3 +15,16 @@ update-pr-checks:
# Transpile typescript code into javascript
build:
npm run build

# Build then run all the tests
test: build
npm run test

# Run the tests for a single file
test_file filename: build
npx ava --verbose {{filename}}

[doc("Refresh the .js build artefacts in the lib directory")]
[confirm]
refresh-lib:
rm -rf lib && npm run build
5 changes: 1 addition & 4 deletions lib/analyze-action.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/analyze-action.js.map

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

Loading