Skip to content

Commit 7bde004

Browse files
committed
Fixes
1 parent 63de883 commit 7bde004

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/pull_request.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
license_header_check_project_name: "SwiftAWSLambdaRuntime"
1313
shell_check_enabled: true
1414
python_lint_check_enabled: true
15-
api_breakage_check_container_image: "swift:6.0-noble"
16-
docs_check_container_image: "swift:6.0-noble"
17-
format_check_container_image: "swiftlang/swift:nightly-6.0-jammy"
15+
api_breakage_check_container_image: "swiftlang/swift:nightly-6.1-jammy"
16+
docs_check_container_image: "swiftlang/swift:nightly-6.1-jammy"
17+
format_check_container_image: "swiftlang/swift:nightly-6.1-jammy"
1818
yamllint_check_enabled: true
1919

2020
unit-tests:

Package.swift

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ let package = Package(
3030
.package(url: "https://github.com/apple/swift-nio.git", from: "2.81.0"),
3131
.package(url: "https://github.com/apple/swift-log.git", from: "1.5.4"),
3232
.package(url: "https://github.com/apple/swift-collections.git", from: "1.1.4"),
33-
.package(url: "https://github.com/apple/swift-service-lifecycle.git", from: "2.6.3", traits: ["ServiceLifecycleSupport"]),
33+
.package(url: "https://github.com/swift-server/swift-service-lifecycle.git", from: "2.6.3"),
3434
],
3535
targets: [
3636
.target(
@@ -41,6 +41,7 @@ let package = Package(
4141
.product(name: "Logging", package: "swift-log"),
4242
.product(name: "NIOHTTP1", package: "swift-nio"),
4343
.product(name: "NIOPosix", package: "swift-nio"),
44+
.product(name: "ServiceLifecycle", package: "swift-service-lifecycle", condition: .when(traits: ["ServiceLifecycleSupport"]))
4445
]
4546
),
4647
.plugin(

0 commit comments

Comments
 (0)