Skip to content

Commit 3c2b464

Browse files
authored
bump minimum deps (#11)
* bump minimum deps * update all * add codecov file * Update ci.yml * Update ci.yml * Update .codecov.yml
1 parent 6c3aa61 commit 3c2b464

File tree

4 files changed

+24
-9
lines changed

4 files changed

+24
-9
lines changed

.codecov.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
coverage:
2+
ignore:
3+
- Tests/ParseServerSwiftTests/.*
4+
status:
5+
patch:
6+
default:
7+
target: auto
8+
changes: false
9+
project:
10+
default:
11+
target: 43
12+
comment:
13+
require_changes: true

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Build and Test
2929
run: swift test --enable-code-coverage -v
3030
env:
31-
DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
31+
DEVELOPER_DIR: ${{ env.CI_XCODE }}
3232
- name: Prepare codecov
3333
uses: sersoft-gmbh/swift-coverage-action@v3
3434
id: coverage-files
@@ -56,6 +56,8 @@ jobs:
5656
github-token: ${{ secrets.GITHUB_TOKEN }}
5757
- name: Build and Test
5858
run: swift test --enable-test-discovery --enable-code-coverage -v
59+
- name: Update codecov config
60+
run: cat .codecov.yml | curl --data-binary @- https://codecov.io/validate
5961
- name: Prepare codecov
6062
run: |
6163
llvm-cov export -format="lcov" .build/x86_64-unknown-linux-gnu/debug/ParseServerSwiftPackageTests.xctest -instr-profile .build/x86_64-unknown-linux-gnu/debug/codecov/default.profdata > info_linux.lcov

Package.resolved

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"repositoryURL": "https://github.com/vapor/async-kit.git",
1616
"state": {
1717
"branch": null,
18-
"revision": "3be4b6418d1e8b835b0b1a1bee06b249faa4da5f",
19-
"version": "1.14.0"
18+
"revision": "929808e51fea04f01de0e911ce826ef70c4db4ea",
19+
"version": "1.15.0"
2020
}
2121
},
2222
{
@@ -114,8 +114,8 @@
114114
"repositoryURL": "https://github.com/apple/swift-crypto.git",
115115
"state": {
116116
"branch": null,
117-
"revision": "92a04c10fc5ce0504f8396aac7392126033e547c",
118-
"version": "2.2.2"
117+
"revision": "9cc89f0170308b813af05dadcd26f9a2dee47713",
118+
"version": "2.2.3"
119119
}
120120
},
121121
{
@@ -195,8 +195,8 @@
195195
"repositoryURL": "https://github.com/vapor/vapor.git",
196196
"state": {
197197
"branch": null,
198-
"revision": "eb2da0d749e185789970c32f7fd9c114a339fa13",
199-
"version": "4.67.5"
198+
"revision": "888c8b68642c1d340b6b3e9b2b8445fb0f6148c9",
199+
"version": "4.68.0"
200200
}
201201
},
202202
{

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.5
1+
// swift-tools-version:5.5.2
22
import PackageDescription
33

44
let package = Package(
@@ -11,7 +11,7 @@ let package = Package(
1111
],
1212
dependencies: [
1313
// 💧 A server-side Swift web framework.
14-
.package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "4.67.5")),
14+
.package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "4.68.0")),
1515
.package(url: "https://github.com/vapor/leaf.git", .upToNextMajor(from: "4.2.4")),
1616
.package(url: "https://github.com/netreconlab/Parse-Swift.git",
1717
.upToNextMajor(from: "4.16.2")),

0 commit comments

Comments
 (0)