Skip to content

Commit b0c11b5

Browse files
author
Dilan
committed
Merge tag 'codeql-cli/latest'
Compatible with the latest released version of the CodeQL CLI
2 parents 9be5b3c + c524a98 commit b0c11b5

File tree

1,258 files changed

+61634
-17135
lines changed

Some content is hidden

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

1,258 files changed

+61634
-17135
lines changed

.bazelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ common --enable_platform_specific_config
22
# because we use --override_module with `%workspace%`, the lock file is not stable
33
common --lockfile_mode=off
44

5+
# Build release binaries by default, can be overwritten to in local.bazelrc and set to `fastbuild` or `dbg`
6+
build --compilation_mode opt
7+
58
# when building from this repository in isolation, the internal repository will not be found at ..
69
# where `MODULE.bazel` looks for it. The following will get us past the module loading phase, so
710
# that we can build things that do not rely on that

.devcontainer/swift/Dockerfile

Lines changed: 0 additions & 9 deletions
This file was deleted.

.devcontainer/swift/devcontainer.json

Lines changed: 0 additions & 25 deletions
This file was deleted.

.devcontainer/swift/root.sh

Lines changed: 0 additions & 34 deletions
This file was deleted.

.devcontainer/swift/update-codeql.sh

Lines changed: 0 additions & 20 deletions
This file was deleted.

.devcontainer/swift/user.sh

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/swift.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,6 @@ jobs:
4848
steps:
4949
- uses: actions/checkout@v4
5050
- uses: ./swift/actions/build-and-test
51-
build-and-test-linux:
52-
if: github.repository_owner == 'github'
53-
runs-on: ubuntu-22.04
54-
steps:
55-
- uses: actions/checkout@v4
56-
- uses: ./swift/actions/build-and-test
5751
qltests-macos:
5852
if: ${{ github.repository_owner == 'github' && github.event_name == 'pull_request' }}
5953
needs: build-and-test-macos

MODULE.bazel

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ use_repo(
218218
"kotlin-compiler-2.0.0-RC1",
219219
"kotlin-compiler-2.0.20-Beta2",
220220
"kotlin-compiler-2.1.0-Beta1",
221+
"kotlin-compiler-2.1.20-Beta1",
221222
"kotlin-compiler-embeddable-1.5.0",
222223
"kotlin-compiler-embeddable-1.5.10",
223224
"kotlin-compiler-embeddable-1.5.20",
@@ -232,6 +233,7 @@ use_repo(
232233
"kotlin-compiler-embeddable-2.0.0-RC1",
233234
"kotlin-compiler-embeddable-2.0.20-Beta2",
234235
"kotlin-compiler-embeddable-2.1.0-Beta1",
236+
"kotlin-compiler-embeddable-2.1.20-Beta1",
235237
"kotlin-stdlib-1.5.0",
236238
"kotlin-stdlib-1.5.10",
237239
"kotlin-stdlib-1.5.20",
@@ -246,6 +248,7 @@ use_repo(
246248
"kotlin-stdlib-2.0.0-RC1",
247249
"kotlin-stdlib-2.0.20-Beta2",
248250
"kotlin-stdlib-2.1.0-Beta1",
251+
"kotlin-stdlib-2.1.20-Beta1",
249252
)
250253

251254
go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk")

actions/extractor/tools/autobuild-impl.ps1

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,16 @@ if (($null -ne $env:LGTM_INDEX_INCLUDE) -or ($null -ne $env:LGTM_INDEX_EXCLUDE)
22
Write-Output 'Path filters set. Passing them through to the JavaScript extractor.'
33
} else {
44
Write-Output 'No path filters set. Using the default filters.'
5+
# Note: We're adding the `reusable_workflows` subdirectories to proactively
6+
# record workflows that were called cross-repo, check them out locally,
7+
# and enable an interprocedural analysis across the workflow files.
8+
# These workflows follow the convention `.github/reusable_workflows/<nwo>/*.ya?ml`
59
$DefaultPathFilters = @(
610
'exclude:**/*',
7-
'include:.github/workflows/**/*.yml',
8-
'include:.github/workflows/**/*.yaml',
11+
'include:.github/workflows/*.yml',
12+
'include:.github/workflows/*.yaml',
13+
'include:.github/reusable_workflows/**/*.yml',
14+
'include:.github/reusable_workflows/**/*.yaml',
915
'include:**/action.yml',
1016
'include:**/action.yaml'
1117
)

0 commit comments

Comments
 (0)