Skip to content

Commit 10c134d

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/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 ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent c428a73 commit 10c134d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/release-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
TAG: ${{ github.ref_name }}
1515
GH_TOKEN: ${{ github.token }}
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Build executable
1919
run: |
2020
swift build \
@@ -46,7 +46,7 @@ jobs:
4646
SHA256: ${{ needs.release-build.outputs.sha }}
4747
steps:
4848
- name: Checkout FelixHerrmann/homebrew-tap
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050
with:
5151
repository: 'FelixHerrmann/homebrew-tap'
5252
- name: Update Formula

.github/workflows/swiftlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: SwiftLint
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
- uses: norio-nomura/action-swiftlint@3.2.1
2929
with:
3030
args: --strict

.github/workflows/xcodebuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- uses: maxim-lobanov/setup-xcode@v1
3838
with:
3939
xcode-version: latest-stable
40-
- uses: actions/checkout@v5
40+
- uses: actions/checkout@v6
4141
- name: Build Scheme
4242
run: |
4343
xcodebuild \
@@ -52,7 +52,7 @@ jobs:
5252
- uses: maxim-lobanov/setup-xcode@v1
5353
with:
5454
xcode-version: latest-stable
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656
- name: Install Tuist
5757
run: brew install tuist
5858
- name: Run tests

0 commit comments

Comments
 (0)