Skip to content

Commit b2660f3

Browse files
authored
Merge pull request #14 from MFB-Technologies-Inc/feature/update-dependencies
Update dependencies
2 parents ff55e8b + e17c907 commit b2660f3

File tree

2 files changed

+25
-16
lines changed

2 files changed

+25
-16
lines changed

.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ on:
66
- main
77
pull_request:
88
branches:
9-
- '*'
9+
- "*"
1010
workflow_dispatch:
1111

1212
jobs:
1313
lint:
1414
runs-on: macos-13
1515
environment: default
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: SwiftFormat version
1919
run: swiftformat --version
2020
- name: Format lint
@@ -28,24 +28,24 @@ jobs:
2828
environment: default
2929
strategy:
3030
matrix:
31-
xcode: ['14.3', '15.0']
31+
xcode: ["14.3", "15.0"]
3232
# Swift: 5.8 , 5.9
3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535
- name: Select Xcode ${{ matrix.xcode }}
3636
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
3737
- name: Run Tests
3838
run: swift test --enable-code-coverage --parallel
3939
- name: Swift Coverage Report
4040
run: xcrun llvm-cov export -format="lcov" .build/debug/swift-argument-encodingPackageTests.xctest/Contents/MacOS/swift-argument-encodingPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov
41-
- uses: codecov/codecov-action@v3
41+
- uses: codecov/codecov-action@v4
4242
with:
4343
token: ${{ secrets.CODECOV_TOKEN }}
4444
fail_ci_if_error: true # optional (default = false)
4545
linux-test:
4646
runs-on: ubuntu-latest
4747
environment: default
48-
48+
4949
steps:
5050
- uses: actions/checkout@v3
5151
- name: Run Tests

Package.resolved

+19-10
Original file line numberDiff line numberDiff line change
@@ -5,44 +5,53 @@
55
"kind" : "remoteSourceControl",
66
"location" : "https://github.com/pointfreeco/combine-schedulers",
77
"state" : {
8-
"revision" : "9dc9cbe4bc45c65164fa653a563d8d8db61b09bb",
9-
"version" : "1.0.0"
8+
"revision" : "9fa31f4403da54855f1e2aeaeff478f4f0e40b13",
9+
"version" : "1.0.2"
1010
}
1111
},
1212
{
1313
"identity" : "swift-clocks",
1414
"kind" : "remoteSourceControl",
1515
"location" : "https://github.com/pointfreeco/swift-clocks",
1616
"state" : {
17-
"revision" : "d1fd837326aa719bee979bdde1f53cd5797443eb",
18-
"version" : "1.0.0"
17+
"revision" : "b9b24b69e2adda099a1fa381cda1eeec272d5b53",
18+
"version" : "1.0.5"
1919
}
2020
},
2121
{
2222
"identity" : "swift-concurrency-extras",
2323
"kind" : "remoteSourceControl",
2424
"location" : "https://github.com/pointfreeco/swift-concurrency-extras",
2525
"state" : {
26-
"revision" : "ea631ce892687f5432a833312292b80db238186a",
27-
"version" : "1.0.0"
26+
"revision" : "bb5059bde9022d69ac516803f4f227d8ac967f71",
27+
"version" : "1.1.0"
2828
}
2929
},
3030
{
3131
"identity" : "swift-dependencies",
3232
"kind" : "remoteSourceControl",
3333
"location" : "https://github.com/pointfreeco/swift-dependencies.git",
3434
"state" : {
35-
"revision" : "4e1eb6e28afe723286d8cc60611237ffbddba7c5",
36-
"version" : "1.0.0"
35+
"revision" : "3ef38bb702a1a2f39c7e19fc0578403b8ee52b17",
36+
"version" : "1.3.9"
37+
}
38+
},
39+
{
40+
"identity" : "swift-syntax",
41+
"kind" : "remoteSourceControl",
42+
"location" : "https://github.com/swiftlang/swift-syntax",
43+
"state" : {
44+
"revision" : "515f79b522918f83483068d99c68daeb5116342d",
45+
"version" : "600.0.0-prerelease-2024-08-20"
3746
}
3847
},
3948
{
4049
"identity" : "xctest-dynamic-overlay",
4150
"kind" : "remoteSourceControl",
4251
"location" : "https://github.com/pointfreeco/xctest-dynamic-overlay",
4352
"state" : {
44-
"revision" : "23cbf2294e350076ea4dbd7d5d047c1e76b03631",
45-
"version" : "1.0.2"
53+
"revision" : "96beb108a57f24c8476ae1f309239270772b2940",
54+
"version" : "1.2.5"
4655
}
4756
}
4857
],

0 commit comments

Comments
 (0)