Skip to content

Commit da10077

Browse files
authored
Merge pull request #23 from approvals/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 822e250 + 9d7c36f commit da10077

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
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@v4
13+
- uses: actions/checkout@v5
1414
- name: Run tests
1515
run: ./run_tests_mac.sh
1616

1717
testIOS:
1818
runs-on: macos-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
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@v4
28+
- uses: actions/checkout@v5
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@v4
37+
- uses: actions/checkout@v5
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@v4
46+
uses: actions/checkout@v5
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@v4
8+
- uses: actions/checkout@v5
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@v4
12+
- uses: actions/checkout@v5
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@v4
27+
- uses: actions/checkout@v5
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@v4
10+
- uses: actions/checkout@v5
1111
- name: Run MarkdownSnippets
1212
run: |
1313
dotnet tool install --global MarkdownSnippets.Tool

ApprovalTests.Swift/Namer/ParameterizedNamer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class ParameterizedNamer: Namer {
22
private let parameters: [String]
33

4-
public init(_ filePath: String, _ function: String, _ parameters: [String]) {
4+
init(_ filePath: String, _ function: String, _ parameters: [String]) {
55
self.parameters = parameters
66
super.init(filePath, function)
77
}

ApprovalTests_SwiftTests/VerifiableTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class SampleMarkdown: Verifiable, CustomStringConvertible {
1717
VerifyParameters(options.forFile.with(extensionWithDot: ".md"))
1818
}
1919

20-
public var description: String {
20+
var description: String {
2121
"""
2222
| A | B |
2323
|---|---|

docs/reference/verifiable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class SampleMarkdown: Verifiable, CustomStringConvertible {
2929
VerifyParameters(options.forFile.with(extensionWithDot: ".md"))
3030
}
3131

32-
public var description: String {
32+
var description: String {
3333
"""
3434
| A | B |
3535
|---|---|

run_tests_ios.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

33
SCHEME='ApprovalTests_iOS'
4-
DESTINATION='platform=iOS Simulator,OS=latest,name=iPhone 15'
4+
DESTINATION='platform=iOS Simulator,OS=latest,name=iPhone 16'
55

66
xcodebuild test -scheme $SCHEME -sdk iphonesimulator -destination "$DESTINATION" CODE_SIGNING_ALLOWED='NO'

runtests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ set -e # exit when any command fails
44

55
swift build -v
66
xcodebuild test -scheme ApprovalTests.Swift CODE_SIGNING_ALLOWED='NO'
7-
xcodebuild test -scheme ApprovalTests_iOS -sdk iphonesimulator -destination "platform=iOS Simulator,OS=latest,name=iPhone 15" CODE_SIGNING_ALLOWED='NO'
7+
xcodebuild test -scheme ApprovalTests_iOS -sdk iphonesimulator -destination "platform=iOS Simulator,OS=latest,name=iPhone 16" CODE_SIGNING_ALLOWED='NO'

0 commit comments

Comments
 (0)