Skip to content

Commit d90ec97

Browse files
Bump actions/checkout from 5 to 6 in the github-actions group
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent e6fe3e4 commit d90ec97

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
xcode-version: ${{ matrix.xcode }}
2121
- name: Checkout
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
- name: Build and Test
2424
run: |
2525
# Set up a git user for the git tests
@@ -55,7 +55,7 @@ jobs:
5555
options: --cap-add=SYS_PTRACE --security-opt seccomp=unconfined --security-opt apparmor=unconfined
5656
steps:
5757
- name: Checkout
58-
uses: actions/checkout@v5
58+
uses: actions/checkout@v6
5959
- name: Build and Test
6060
run: |
6161
# Set up a git user for the git tests
@@ -83,7 +83,7 @@ jobs:
8383
with:
8484
swift-version: ${{ matrix.swift.version }}
8585
swift-build: ${{ matrix.swift.build }}
86-
- uses: actions/checkout@v5
86+
- uses: actions/checkout@v6
8787
- run: swift test
8888

8989
command-line-tool:
@@ -101,7 +101,7 @@ jobs:
101101
with:
102102
xcode-version: ${{ matrix.xcode }}
103103
- name: Checkout
104-
uses: actions/checkout@v5
104+
uses: actions/checkout@v6
105105
- name: Build Command Line Tool
106106
run: xcodebuild -project SwiftFormat.xcodeproj -scheme "SwiftFormat (Command Line Tool)" -sdk macosx clean build
107107

@@ -120,7 +120,7 @@ jobs:
120120
with:
121121
xcode-version: ${{ matrix.xcode }}
122122
- name: Checkout
123-
uses: actions/checkout@v5
123+
uses: actions/checkout@v6
124124
- name: Build Swift Format for Xcode app
125125
run: xcodebuild -project SwiftFormat.xcodeproj -scheme "SwiftFormat for Xcode" -sdk macosx clean build
126126

@@ -139,7 +139,7 @@ jobs:
139139
with:
140140
xcode-version: ${{ matrix.xcode }}
141141
- name: Checkout
142-
uses: actions/checkout@v5
142+
uses: actions/checkout@v6
143143
- name: Build Editor Extension
144144
run: xcodebuild -project SwiftFormat.xcodeproj -scheme "SwiftFormat (Editor Extension)" -sdk macosx clean build
145145

@@ -158,7 +158,7 @@ jobs:
158158
with:
159159
xcode-version: ${{ matrix.xcode }}
160160
- name: Checkout
161-
uses: actions/checkout@v5
161+
uses: actions/checkout@v6
162162
- name: Run Regression Tests
163163
run: xcodebuild -project SwiftFormat.xcodeproj -scheme "Regression Tests" test
164164

@@ -177,6 +177,6 @@ jobs:
177177
with:
178178
xcode-version: ${{ matrix.xcode }}
179179
- name: Checkout
180-
uses: actions/checkout@v5
180+
uses: actions/checkout@v6
181181
- name: Build Target
182182
run: xcodebuild -project SwiftFormat.xcodeproj -scheme "Performance Tests" build

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
- name: Extract metadata (tags, labels) for Docker
2323
id: meta

.github/workflows/notarize.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
xcode-version: '16.3'
2222

2323
- name: Checkout
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525
with:
2626
ref: ${{ github.event.release.tag_name || inputs.tag }}
2727

@@ -160,7 +160,7 @@ jobs:
160160
needs: [build-and-notarize]
161161
steps:
162162
- name: Checkout the repository
163-
uses: actions/checkout@v5
163+
uses: actions/checkout@v6
164164
with:
165165
ref: ${{ github.event.release.tag_name || inputs.tag }}
166166
- uses: actions/download-artifact@v5

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: macos-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v5
11+
uses: actions/checkout@v6
1212
- name: Set Version Number
1313
run: echo "Using version number $GITHUB_REF_NAME" && sed -i '' "s/let swiftFormatVersion = \"[^\"]*\"/let swiftFormatVersion = \"$GITHUB_REF_NAME\"/" Sources/SwiftFormat.swift
1414
- name: Build macOS binary (arm64)
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737
- name: Set Version Number
3838
run: echo "Using version number $GITHUB_REF_NAME" && sed -i "s/let swiftFormatVersion = \"[^\"]*\"/let swiftFormatVersion = \"$GITHUB_REF_NAME\"/" Sources/SwiftFormat.swift
3939
- name: Set up Docker Buildx
@@ -72,7 +72,7 @@ jobs:
7272
needs: [macos, linux]
7373
steps:
7474
- name: Checkout the repository
75-
uses: actions/checkout@v5
75+
uses: actions/checkout@v6
7676
- uses: actions/download-artifact@v5
7777
with:
7878
path: downloaded_artifacts

.github/workflows/windows_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
update-sdk-modules: true
3434

3535
- name: Checkout
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737

3838
- shell: pwsh
3939
run: |
@@ -77,7 +77,7 @@ jobs:
7777
if: always()
7878
steps:
7979
- name: Checkout the repository
80-
uses: actions/checkout@v5
80+
uses: actions/checkout@v6
8181
- uses: actions/download-artifact@v5
8282
with:
8383
path: downloaded-artifacts

0 commit comments

Comments
 (0)