Skip to content

Commit 0181bf0

Browse files
authored
Merge pull request #236 from giginet/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents fed4d26 + 21f037d commit 0181bf0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/docc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
DocC:
1111
runs-on: macos-15
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: Build DocC
1515
run: |
1616
swift package --allow-writing-to-directory ./docs generate-documentation \

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode_version }}.app/Contents/Developer"
1717
runs-on: macos-15
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- name: Install SwiftLint
2121
run: brew install swiftlint
2222
- name: SwiftLint

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release:
1010
runs-on: macos-15
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
# Scipio can't be built with Xcode build mode, so it can't be a universal binary.
1414
- name: Build for arm64
1515
run: swift build --disable-sandbox -c release --arch arm64

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- name: Get swift version
2222
run: swift --version
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- name: Build
2525
run: |
2626
swift build

0 commit comments

Comments
 (0)