Skip to content

Commit e0e02c7

Browse files
committed
Merge branch 'main' into cklin/merge-back-2.20.2
2 parents 02069b6 + a54e732 commit e0e02c7

File tree

404 files changed

+31766
-4782
lines changed

Some content is hidden

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

404 files changed

+31766
-4782
lines changed

.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/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
)

actions/extractor/tools/autobuild.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,16 @@
22

33
set -eu
44

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
DEFAULT_PATH_FILTERS=$(cat << END
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
END
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
category: fix
3+
---
4+
* Fixed data for vulnerable versions of `actions/download-artifact` and `rlespinasse/github-slug-action` (following GHSA-cxww-7g56-2vh6 and GHSA-6q4m-7476-932w).

0 commit comments

Comments
 (0)