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: v1.0.28
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: v1.0.29
Choose a head ref
  • 9 commits
  • 8 files changed
  • 3 contributors

Commits on Jan 18, 2022

  1. Update changelog and version after v1.0.28

    github-actions[bot] committed Jan 18, 2022
    Copy the full SHA
    28fe8e7 View commit details
  2. 1.0.29

    github-actions[bot] committed Jan 18, 2022
    Copy the full SHA
    fca0476 View commit details
  3. Update checked-in dependencies

    github-actions[bot] committed Jan 18, 2022
    Copy the full SHA
    d563b09 View commit details
  4. Merge pull request #875 from github/mergeback/v1.0.28-to-main-8a4b243f

    Mergeback v1.0.28 refs/heads/v1 into main
    edoardopirovano authored Jan 18, 2022
    Copy the full SHA
    c0b507e View commit details

Commits on Jan 21, 2022

  1. Revert "Start waiting for processing by default."

    This reverts commit b661ef1.
    chrisgavin committed Jan 21, 2022
    Copy the full SHA
    713eacd View commit details
  2. Add a changelog note.

    chrisgavin committed Jan 21, 2022
    Copy the full SHA
    7ec25e0 View commit details
  3. Merge pull request #878 from github/revert-wait-for-processing

    Revert "Start waiting for processing by default."
    edoardopirovano authored Jan 21, 2022
    Copy the full SHA
    67c0353 View commit details
  4. 1.0.29

    github-actions[bot] committed Jan 21, 2022
    Copy the full SHA
    5a1e31d View commit details
  5. Merge pull request #879 from github/update-v1.0.29-67c0353a

    Merge main into v1
    edoardopirovano authored Jan 21, 2022
    Copy the full SHA
    384cfc4 View commit details
Showing with 12 additions and 8 deletions.
  1. +4 −0 CHANGELOG.md
  2. +1 −1 analyze/action.yml
  3. +1 −1 node_modules/.package-lock.json
  4. +2 −2 package-lock.json
  5. +1 −1 package.json
  6. +1 −1 runner/package-lock.json
  7. +1 −1 runner/package.json
  8. +1 −1 upload-sarif/action.yml
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CodeQL Action and CodeQL Runner Changelog

## 1.0.29 - 21 Jan 2022

- The feature to wait for SARIF processing to complete after upload has been disabled by default due to a bug in its interaction with pull requests from forks.

## 1.0.28 - 18 Jan 2022

- Update default CodeQL bundle version to 2.7.5. [#866](https://github.com/github/codeql-action/pull/866)
2 changes: 1 addition & 1 deletion analyze/action.yml
Original file line number Diff line number Diff line change
@@ -55,7 +55,7 @@ inputs:
wait-for-processing:
description: If true, the Action will wait for the uploaded SARIF to be processed before completing.
required: true
default: "true"
default: "false"
token:
default: ${{ github.token }}
matrix:
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": "1.0.28",
"version": "1.0.29",
"private": true,
"description": "CodeQL action",
"scripts": {
2 changes: 1 addition & 1 deletion runner/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 runner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codeql-runner",
"version": "1.0.28",
"version": "1.0.29",
"private": true,
"description": "CodeQL runner",
"scripts": {
2 changes: 1 addition & 1 deletion upload-sarif/action.yml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ inputs:
wait-for-processing:
description: If true, the Action will wait for the uploaded SARIF to be processed before completing.
required: true
default: "true"
default: "false"
runs:
using: 'node12'
main: '../lib/upload-sarif-action.js'