Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cd783c8

Browse files
Merge pull request #870 from github/update-v1.0.27-faa9ba73
Merge main into v1
2 parents 5f53256 + 300c8b6 commit cd783c8

File tree

93 files changed

+1280
-438
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+1280
-438
lines changed

.github/prepare-test/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ runs:
2828
echo "::set-output name=tools-url::https://github.com/dsp-testing/codeql-cli-nightlies/releases/download/codeql-bundle-$VERSION-manual/codeql-bundle.tar.gz"
2929
elif [[ ${{ inputs.version }} == *"stable"* ]]; then
3030
export VERSION=`echo ${{ inputs.version }} | sed -e 's/^.*\-//'`
31-
echo "Hello $VERSION"
3231
echo "::set-output name=tools-url::https://github.com/github/codeql-action/releases/download/codeql-bundle-$VERSION/codeql-bundle.tar.gz"
3332
elif [[ ${{ inputs.version }} == "latest" ]]; then
3433
echo "::set-output name=tools-url::latest"

.github/workflows/__debug-artifacts.yml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-custom-queries.yml

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__multi-language-autodetect.yml

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__packaging-config-inputs-js.yml

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__packaging-config-js.yml

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__packaging-inputs-js.yml

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__remote-config.yml

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__split-workflow.yml

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__test-local-codeql.yml

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__unset-environment.yml

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/pr-checks.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,6 @@ jobs:
163163
cd ../action/runner
164164
npm install
165165
npm run build-runner
166-
167-
- name: Initialize dotnet
168-
run: dotnet restore
169166
170167
- name: Run init
171168
run: |
@@ -203,9 +200,6 @@ jobs:
203200
cd ../action/runner
204201
npm install
205202
npm run build-runner
206-
207-
- name: Initialize dotnet
208-
run: dotnet restore
209203
210204
- name: Run init
211205
run: |
@@ -252,9 +246,6 @@ jobs:
252246
npm install
253247
npm run build-runner
254248
255-
- name: Initialize dotnet
256-
run: dotnet restore
257-
258249
- name: Run init
259250
run: |
260251
../action/runner/dist/codeql-runner-macos init --repository $GITHUB_REPOSITORY --languages csharp --github-url $GITHUB_SERVER_URL --github-auth ${{ github.token }}

.github/workflows/update-release-branch.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
name: Update release branch
22
on:
3-
schedule:
4-
- cron: 0 9 * * 1
53
repository_dispatch:
64
# Example of how to trigger this:
75
# curl -H "Authorization: Bearer <token>" -X POST https://api.github.com/repos/github/codeql-action/dispatches -d '{"event_type":"update-release-branch"}'

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CodeQL Action and CodeQL Runner Changelog
22

3+
## 1.0.27 - 11 Jan 2022
4+
5+
- The `analyze` and `upload-sarif` actions will now wait up to 2 minutes for processing to complete after they have uploaded the results so they can report any processing errors that occurred. This behavior can be disabled by setting the `wait-for-processing` action input to `"false"`.
6+
7+
38
## 1.0.26 - 10 Dec 2021
49

510
- Update default CodeQL bundle version to 2.7.3. [#842](https://github.com/github/codeql-action/pull/842)

analyze/action.yml

Lines changed: 1 addition & 1 deletion
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:

init/action.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,16 @@ inputs:
5959
description: Enable debugging mode. This will result in more output being produced which may be useful when debugging certain issues.
6060
required: false
6161
default: 'false'
62+
debug-artifact-name:
63+
description: >-
64+
The name of the artifact to store debugging information in.
65+
This is only used when debug mode is enabled.
66+
required: false
67+
debug-database-name:
68+
description: >-
69+
The name of the database uploaded to the debugging artifact.
70+
This is only used when debug mode is enabled.
71+
required: false
6272
outputs:
6373
codeql-path:
6474
description: The path of the CodeQL binary used for analysis

lib/analysis-paths.test.js

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analysis-paths.test.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze-action-env.test.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze-action-env.test.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze-action-input.test.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)