Skip to content

Commit b661ef1

Browse files
committed
Start waiting for processing by default.
1 parent 6ad00fd commit b661ef1

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## [UNRELEASED]
44

55
- Update default CodeQL bundle version to 2.7.3. [#842](https://github.com/github/codeql-action/pull/842)
6+
- The `analyze` and `upload-sarif` actions will now wait up to 2 minutes for processing to complete so they can report any processing errors that occurred. This behavior can be disabled by setting the `wait-for-processing` action input to `"false"`.
67

78
## 1.0.25 - 06 Dec 2021
89

analyze/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ inputs:
5555
wait-for-processing:
5656
description: If true, the Action will wait for the uploaded SARIF to be processed before completing.
5757
required: true
58-
default: "false"
58+
default: "true"
5959
token:
6060
default: ${{ github.token }}
6161
matrix:

upload-sarif/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ inputs:
2323
wait-for-processing:
2424
description: If true, the Action will wait for the uploaded SARIF to be processed before completing.
2525
required: true
26-
default: "false"
26+
default: "true"
2727
runs:
2828
using: 'node12'
2929
main: '../lib/upload-sarif-action.js'

0 commit comments

Comments
 (0)