Skip to content

Commit f06cf4a

Browse files
authored
Merge pull request #24 from approvals/dependabot/github_actions/actions/checkout-6
Bump actions/checkout from 5 to 6
2 parents da10077 + be29285 commit f06cf4a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ jobs:
1010
testMacOS:
1111
runs-on: macos-latest
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- name: Run tests
1515
run: ./run_tests_mac.sh
1616

1717
testIOS:
1818
runs-on: macos-latest
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- name: Run tests
2222
run: ./run_tests_ios.sh
2323

2424
buildSwiftPackage:
2525
needs: [ testMacOS, testIOS ]
2626
runs-on: macos-latest
2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
- name: Build
3030
run: swift build -v
3131

@@ -34,7 +34,7 @@ jobs:
3434
name: Build Carthage
3535
runs-on: macos-latest
3636
steps:
37-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3838
- name: Build
3939
run: carthage build --configuration Release --no-skip-current --use-xcframeworks
4040

@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
- name: Check out repo
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747
- name: auto-merge
4848
if: |
4949
github.actor == 'dependabot[bot]' &&

.github/workflows/lint-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ jobs:
55
Lint:
66
runs-on: macos-latest
77
steps:
8-
- uses: actions/checkout@v5
8+
- uses: actions/checkout@v6
99
- name: SwiftFormat
1010
run: swiftformat --lint . --reporter github-actions-log

.github/workflows/test_current_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
buildAndTestMacOS:
1010
runs-on: macos-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
with:
1414
repository: approvals/ApprovalTests.Swift.StarterProject.MacOS
1515
path: ApprovalTests.Swift.StarterProject.MacOS
@@ -24,7 +24,7 @@ jobs:
2424
buildAndTestiOs:
2525
runs-on: macos-latest
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
with:
2929
repository: approvals/ApprovalTests.Swift.StarterProject.iOs
3030
path: ApprovalTests.Swift.StarterProject.iOs

.github/workflows/updateMarkdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
update-markdown-snippets:
88
runs-on: windows-latest
99
steps:
10-
- uses: actions/checkout@v5
10+
- uses: actions/checkout@v6
1111
- name: Run MarkdownSnippets
1212
run: |
1313
dotnet tool install --global MarkdownSnippets.Tool

0 commit comments

Comments
 (0)