Skip to content

Commit feec81c

Browse files
committed
Merge branch 'main' into henrymercer/csharp-buildless-rollback-mechanism
2 parents 0c392c4 + 789b5f8 commit feec81c

File tree

252 files changed

+3077
-1370
lines changed

Some content is hidden

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

252 files changed

+3077
-1370
lines changed

.github/actions/query-filter-test/action.yml

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ runs:
4848
- uses: ./../action/analyze
4949
with:
5050
output: ${{ runner.temp }}/results
51-
upload-database: false
5251
upload: never
5352
env:
5453
CODEQL_ACTION_TEST_MODE: "true"

.github/workflows/__all-platform-bundle.yml

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__analyze-ref-input.yml

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__autobuild-action.yml

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__autobuild-direct-tracing-with-working-dir.yml

+92
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__cleanup-db-cluster-dir.yml

+81
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-indirect-tracing-workaround.yml

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-tracing-autobuilder.yml

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-tracing-custom-build-steps.yml

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-tracing-legacy-workflow.yml

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__javascript-source-root.yml

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__test-autobuild-working-dir.yml

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__test-proxy.yml

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__upload-ref-sha-input.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__with-checkout-path.yml

-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/expected-queries-runs.yml

-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ jobs:
3737
- uses: ./../action/analyze
3838
with:
3939
output: ${{ runner.temp }}/results
40-
upload-database: false
41-
upload: never
4240

4341
- name: Check Sarif
4442
uses: ./../action/.github/actions/check-sarif

.github/workflows/python312-windows.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ on:
1414

1515
jobs:
1616
test-setup-python-scripts:
17+
env:
18+
CODEQL_ACTION_TEST_MODE: true
1719
timeout-minutes: 45
1820
runs-on: windows-latest
1921

@@ -37,6 +39,3 @@ jobs:
3739

3840
- name: Analyze
3941
uses: ./../action/analyze
40-
with:
41-
upload: false
42-
upload-database: false

.github/workflows/script/update-node-modules.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -eu
33

4-
if [ "$1" != "update" && "$1" != "check-only" ]; then
4+
if [ "$1" != "update" ] && [ "$1" != "check-only" ]; then
55
>&2 echo "Failed: Invalid argument. Must be 'update' or 'check-only'"
66
exit 1
77
fi

.github/workflows/test-codeql-bundle-all.yml

-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,5 @@ jobs:
5353
shell: bash
5454
run: ./build.sh
5555
- uses: ./../action/analyze
56-
with:
57-
upload-database: false
5856
env:
5957
CODEQL_ACTION_TEST_MODE: true

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ Note that the only difference between `v2` and `v3` of the CodeQL Action is the
66

77
## [UNRELEASED]
88

9-
No user facing changes.
9+
- Update default CodeQL bundle version to 2.17.5. [#2327](https://github.com/github/codeql-action/pull/2327)
10+
11+
## 3.25.9 - 12 Jun 2024
12+
13+
- Avoid failing database creation if the database folder already exists and contains some unexpected files. Requires CodeQL 2.18.0 or higher. [#2330](https://github.com/github/codeql-action/pull/2330)
14+
- The init Action will attempt to clean up the database cluster directory before creating a new database and at the end of the job. This will help to avoid issues where the database cluster directory is left in an inconsistent state. [#2332](https://github.com/github/codeql-action/pull/2332)
1015

1116
## 3.25.8 - 04 Jun 2024
1217

lib/actions-util.js

+5-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)