Skip to content

Commit b264df1

Browse files
authored
fix: Adding via SPM doesn't work due to unstable Bolts dependency (#1695)
1 parent 044006a commit b264df1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010

1111
jobs:
1212
ios:
13-
runs-on: macos-latest
13+
runs-on: macos-12
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Setup Ruby

Package.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ let package = Package(
1717
.library(name: "ParseUI", targets: ["ParseUI"])
1818
],
1919
dependencies: [
20-
.package(url: "https://github.com/vazarkevych/Bolts-ObjC.git", branch: "spm"),
21-
.package(url: "https://github.com/facebook/facebook-ios-sdk", from: "15.1.0")
20+
.package(url: "https://github.com/parse-community/Bolts-ObjC.git", from: "1.10.0"),
21+
.package(url: "https://github.com/facebook/facebook-ios-sdk.git", from: "15.1.0")
2222
],
2323
targets: [
2424
.target(

0 commit comments

Comments
 (0)