@@ -247,13 +247,15 @@ let package = Package(
247
247
// for building the swift toolchain, such as `update-checkout`, or cross-repo PR tests.
248
248
249
249
if ProcessInfo . processInfo. environment [ " SWIFTCI_USE_LOCAL_DEPS " ] == nil {
250
+ let relatedDependenciesBranch = " release/5.10 "
251
+
250
252
// Building standalone.
251
253
package . dependencies += [
252
- . package ( url: " https://github.com/apple/indexstore-db.git " , branch: " main " ) ,
253
- . package ( url: " https://github.com/apple/swift-package-manager.git " , branch: " main " ) ,
254
- . package ( url: " https://github.com/apple/swift-tools-support-core.git " , branch: " main " ) ,
254
+ . package ( url: " https://github.com/apple/indexstore-db.git " , branch: relatedDependenciesBranch ) ,
255
+ . package ( url: " https://github.com/apple/swift-package-manager.git " , branch: relatedDependenciesBranch ) ,
256
+ . package ( url: " https://github.com/apple/swift-tools-support-core.git " , branch: relatedDependenciesBranch ) ,
255
257
. package ( url: " https://github.com/apple/swift-argument-parser.git " , from: " 1.2.2 " ) ,
256
- . package ( url: " https://github.com/apple/swift-syntax.git " , branch: " main " ) ,
258
+ . package ( url: " https://github.com/apple/swift-syntax.git " , branch: relatedDependenciesBranch ) ,
257
259
]
258
260
} else {
259
261
package . dependencies += [
0 commit comments