Skip to content

Commit cad4ff6

Browse files
authored
Merge pull request #1121 from swiftlang/automerge/merge-main-2025-12-15_09-13
Merge `main` into `release/6.3`
2 parents b0ad110 + 687918d commit cad4ff6

File tree

6 files changed

+21
-15
lines changed

6 files changed

+21
-15
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/auto_update_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
pull-requests: write
1616
steps:
1717
- name: Checkout repo
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121
ref: ${{ github.ref }}

.github/workflows/automerge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
create_merge_pr:
1212
name: Create PR to merge main into release branch
13-
uses: swiftlang/github-workflows/.github/workflows/create_automerge_pr.yml@main
13+
uses: swiftlang/github-workflows/.github/workflows/create_automerge_pr.yml@0.0.2
1414
with:
1515
base_branch: release/6.3
1616
permissions:

.github/workflows/publish_release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- run: |
36-
if [[ "${{ github.triggering_actor }}" != "bnbarham" ]]; then
36+
if [[ "${{ github.triggering_actor }}" != "rintaro" && "${{ github.triggering_actor }}" != "hamishknight" ]]; then
3737
echo "${{ github.triggering_actor }} is not allowed to create a release"
3838
exit 1
3939
fi
@@ -69,7 +69,7 @@ jobs:
6969
echo "Using swift-format version: $SWIFT_FORMAT_VERSION"
7070
echo "swift_format_version=$SWIFT_FORMAT_VERSION" >> "$GITHUB_OUTPUT"
7171
- name: Checkout repository
72-
uses: actions/checkout@v4
72+
uses: actions/checkout@v6
7373
- name: Create release commits
7474
id: create_release_commits
7575
run: |
@@ -95,7 +95,7 @@ jobs:
9595
} >> "$GITHUB_OUTPUT"
9696
test:
9797
name: Test in ${{ matrix.release && 'Release' || 'Debug' }} configuration
98-
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
98+
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@0.0.2
9999
needs: create_release_commits
100100
strategy:
101101
fail-fast: false
@@ -129,7 +129,7 @@ jobs:
129129
contents: write
130130
steps:
131131
- name: Checkout repository
132-
uses: actions/checkout@v4
132+
uses: actions/checkout@v6
133133
- name: Apply release commits
134134
run: |
135135
git config --global --add safe.directory "$(realpath .)"
@@ -152,7 +152,7 @@ jobs:
152152
contents: write
153153
steps:
154154
- name: Checkout repository
155-
uses: actions/checkout@v4
155+
uses: actions/checkout@v6
156156
- name: Create release
157157
env:
158158
GH_TOKEN: ${{ github.token }}

.github/workflows/pull_request.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ concurrency:
1717
jobs:
1818
tests:
1919
name: Test
20-
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
20+
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@0.0.2
2121
with:
2222
enable_cross_pr_testing: true
2323
linux_exclude_swift_versions: "[{\"swift_version\": \"5.9\"}, {\"swift_version\": \"5.10\"}]"
2424
windows_exclude_swift_versions: "[{\"swift_version\": \"5.9\"}]"
2525
soundness:
2626
name: Soundness
27-
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
27+
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@0.0.2
2828
with:
2929
license_header_check_project_name: "Swift.org"
3030
api_breakage_check_allowlist_path: "api-breakages.txt"
@@ -36,7 +36,7 @@ jobs:
3636
image: swift:6.2
3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v6
4040
with:
4141
persist-credentials: false
4242
- name: Mark the workspace as safe
@@ -63,7 +63,7 @@ jobs:
6363
cd "$GITHUB_WORKSPACE"
6464
/tmp/check-swift-format.sh
6565
- name: Checkout swift-syntax
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v6
6767
with:
6868
repository: swiftlang/swift-syntax
6969
persist-credentials: false
@@ -73,7 +73,7 @@ jobs:
7373
cd "$GITHUB_WORKSPACE/swift-syntax"
7474
/tmp/check-swift-format.sh
7575
- name: Checkout sourcekit-lsp
76-
uses: actions/checkout@v4
76+
uses: actions/checkout@v6
7777
with:
7878
repository: swiftlang/sourcekit-lsp
7979
persist-credentials: false

CODEOWNERS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# See https://swift.org/CONTRIBUTORS.txt for Swift project authors
99
#
1010

11-
* @allevato @bnbarham @hamishknight @rintaro
11+
* @allevato @hamishknight @rintaro
1212

13-
.github/ @bnbarham @shahmishal
14-
.swiftci/ @bnbarham @shahmishal
13+
.github/ @shahmishal
14+
.swiftci/ @shahmishal

0 commit comments

Comments
 (0)