The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Actions, reference v1.5.1 (19111b), with Swift 6.0 for Linux on 27 Nov 2024 03:37:39 UTC.

Swift 6 data race errors: 18

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/elegantchaos/Actions.git
Reference: v1.5.1
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/elegantchaos/Actions
 * tag               v1.5.1     -> FETCH_HEAD
HEAD is now at 19111bc Fixed tvOS version requirements. Don't test/build for watchOS for now.
Cloned https://github.com/elegantchaos/Actions.git
Revision (git rev-parse @):
19111bc61490fd50c9dfd746ec5e79188ca1a2d3
SUCCESS checkout https://github.com/elegantchaos/Actions.git at v1.5.1
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/elegantchaos/Actions.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Fetching https://github.com/elegantchaos/Logger.git
[1/2051] Fetching logger
Fetched https://github.com/elegantchaos/Logger.git from cache (0.21s)
Computing version for https://github.com/elegantchaos/Logger.git
Computed https://github.com/elegantchaos/Logger.git at 1.8.2 (0.44s)
Creating working copy for https://github.com/elegantchaos/Logger.git
Working copy of https://github.com/elegantchaos/Logger.git resolved at 1.8.2
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-24593BA9C3E375BF.txt
[5/13] Compiling Logger NSLogHandler.swift
[6/14] Compiling Logger OSLogHandler.swift
[7/14] Compiling Logger PrintHandler.swift
[8/14] Compiling Logger ManagerSettings.swift
[9/14] Compiling Logger Handler.swift
[10/14] Compiling Logger Channel.swift
[11/14] Compiling Logger Context.swift
[12/14] Emitting module Logger
[13/14] Compiling Logger Manager.swift
[14/14] Compiling Logger UserDefaultsManagerSettings.swift
[16/25] Compiling Actions DecodableWithContext.swift
[17/26] Compiling Actions ActionSerialisation.swift
[18/26] Compiling Actions DelegatedAction.swift
[19/26] Compiling Actions ActionIdentification.swift
/host/spi-builder-workspace/Sources/Actions/ActionIdentification.swift:18:13: warning: var 'actionIDKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | #endif
17 |
18 | private var actionIDKey: UInt8 = 0
   |             |- warning: var 'actionIDKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'actionIDKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'actionIDKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | extension ActionIdentification {
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:28:23: warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
26 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
   |                       |- warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'observer' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
   |                       |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'notification' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
   |                       |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sender' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
[20/26] Compiling Actions ActionInfo.swift
/host/spi-builder-workspace/Sources/Actions/ActionIdentification.swift:18:13: warning: var 'actionIDKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | #endif
17 |
18 | private var actionIDKey: UInt8 = 0
   |             |- warning: var 'actionIDKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'actionIDKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'actionIDKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | extension ActionIdentification {
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:28:23: warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
26 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
   |                       |- warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'observer' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
   |                       |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'notification' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
   |                       |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sender' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
[21/26] Emitting module Actions
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
   |                       |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'notification' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
/host/spi-builder-workspace/Sources/Actions/ActionIdentification.swift:18:13: warning: var 'actionIDKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | #endif
17 |
18 | private var actionIDKey: UInt8 = 0
   |             |- warning: var 'actionIDKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'actionIDKey' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'actionIDKey' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | extension ActionIdentification {
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:28:23: warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
26 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
   |                       |- warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'observer' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:21:23: warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
19 |
20 | extension ActionKey {
21 |     public static let action: ActionKey = "action"
   |                       |- warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'action' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:22:23: warning: static property 'actionComponents' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
20 | extension ActionKey {
21 |     public static let action: ActionKey = "action"
22 |     public static let actionComponents: ActionKey = "components"
   |                       |- warning: static property 'actionComponents' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'actionComponents' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:23:23: warning: static property 'document' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
21 |     public static let action: ActionKey = "action"
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
   |                       |- warning: static property 'document' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'document' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:24:23: warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
   |                       |- warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'info' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:25:23: warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
   |                       |- warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'model' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:27:23: warning: static property 'object' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
   |                       |- warning: static property 'object' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'object' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let observer: ActionKey = "observer"
29 |     public static let root: ActionKey = "root"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:29:23: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
29 |     public static let root: ActionKey = "root"
   |                       |- warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'root' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:30:23: warning: static property 'selection' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
28 |     public static let observer: ActionKey = "observer"
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
   |                       |- warning: static property 'selection' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'selection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let sender: ActionKey = "sender"
32 |     public static let skipValidation: ActionKey = "skipValidation"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
   |                       |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sender' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:32:23: warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
32 |     public static let skipValidation: ActionKey = "skipValidation"
   |                       |- warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'skipValidation' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let target: ActionKey = "target"
34 |     public static let viewModel: ActionKey = "viewModel"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:33:23: warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
31 |     public static let sender: ActionKey = "sender"
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
   |                       |- warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'target' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     public static let viewModel: ActionKey = "viewModel"
35 |     public static let window: ActionKey = "window"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:34:23: warning: static property 'viewModel' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
34 |     public static let viewModel: ActionKey = "viewModel"
   |                       |- warning: static property 'viewModel' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'viewModel' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |     public static let window: ActionKey = "window"
36 | }
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:35:23: warning: static property 'window' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
33 |     public static let target: ActionKey = "target"
34 |     public static let viewModel: ActionKey = "viewModel"
35 |     public static let window: ActionKey = "window"
   |                       |- warning: static property 'window' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'window' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | }
37 |
/host/spi-builder-workspace/Sources/Actions/ActionManager.swift:13:12: warning: let 'actionChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |  */
 12 |
 13 | public let actionChannel = Channel("com.elegantchaos.actions")
    |            `- warning: let 'actionChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
 14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
 15 |
/host/spi-builder-workspace/.build/checkouts/Logger/Sources/Logger/Channel.swift:15:14: note: class 'Channel' does not conform to the 'Sendable' protocol
 13 |  */
 14 |
 15 | public class Channel {
    |              `- note: class 'Channel' does not conform to the 'Sendable' protocol
 16 |     /**
 17 |      Default log handler which prints to standard out,
/host/spi-builder-workspace/Sources/Actions/ActionManager.swift:7:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Logger'
  5 |
  6 | import Foundation
  7 | import Logger
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Logger'
  8 |
  9 | /**
    :
 11 |  */
 12 |
 13 | public let actionChannel = Channel("com.elegantchaos.actions")
    |            |- note: annotate 'actionChannel' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
 15 |
/host/spi-builder-workspace/Sources/Actions/ActionManager.swift:14:12: warning: let 'providerChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | public let actionChannel = Channel("com.elegantchaos.actions")
 14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
    |            |- warning: let 'providerChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: annotate 'providerChannel' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |
 16 | public protocol ActionResponder {
/host/spi-builder-workspace/.build/checkouts/Logger/Sources/Logger/Channel.swift:15:14: note: class 'Channel' does not conform to the 'Sendable' protocol
 13 |  */
 14 |
 15 | public class Channel {
    |              `- note: class 'Channel' does not conform to the 'Sendable' protocol
 16 |     /**
 17 |      Default log handler which prints to standard out,
[22/26] Compiling Actions Action.swift
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
   |                       |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'notification' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
   |                       |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sender' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:21:23: warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
19 |
20 | extension ActionKey {
21 |     public static let action: ActionKey = "action"
   |                       |- warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'action' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:24:23: warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
   |                       |- warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'info' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
[23/26] Compiling Actions ActionContext.swift
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
   |                       |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'notification' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
   |                       |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sender' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:21:23: warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
19 |
20 | extension ActionKey {
21 |     public static let action: ActionKey = "action"
   |                       |- warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'action' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:24:23: warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
   |                       |- warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'info' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
[24/26] Compiling Actions ActionKey.swift
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:21:23: warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
19 |
20 | extension ActionKey {
21 |     public static let action: ActionKey = "action"
   |                       |- warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'action' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:22:23: warning: static property 'actionComponents' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
20 | extension ActionKey {
21 |     public static let action: ActionKey = "action"
22 |     public static let actionComponents: ActionKey = "components"
   |                       |- warning: static property 'actionComponents' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'actionComponents' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:23:23: warning: static property 'document' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
21 |     public static let action: ActionKey = "action"
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
   |                       |- warning: static property 'document' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'document' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:24:23: warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
22 |     public static let actionComponents: ActionKey = "components"
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
   |                       |- warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'info' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:25:23: warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
23 |     public static let document: ActionKey = "document"
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
   |                       |- warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'model' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
   |                       |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'notification' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:27:23: warning: static property 'object' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
   |                       |- warning: static property 'object' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'object' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |     public static let observer: ActionKey = "observer"
29 |     public static let root: ActionKey = "root"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:28:23: warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
26 |     public static let notification: ActionKey = "notification"
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
   |                       |- warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'observer' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:29:23: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
29 |     public static let root: ActionKey = "root"
   |                       |- warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'root' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:30:23: warning: static property 'selection' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
28 |     public static let observer: ActionKey = "observer"
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
   |                       |- warning: static property 'selection' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'selection' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     public static let sender: ActionKey = "sender"
32 |     public static let skipValidation: ActionKey = "skipValidation"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
29 |     public static let root: ActionKey = "root"
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
   |                       |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'sender' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:32:23: warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
32 |     public static let skipValidation: ActionKey = "skipValidation"
   |                       |- warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'skipValidation' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let target: ActionKey = "target"
34 |     public static let viewModel: ActionKey = "viewModel"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:33:23: warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
31 |     public static let sender: ActionKey = "sender"
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
   |                       |- warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'target' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     public static let viewModel: ActionKey = "viewModel"
35 |     public static let window: ActionKey = "window"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:34:23: warning: static property 'viewModel' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
32 |     public static let skipValidation: ActionKey = "skipValidation"
33 |     public static let target: ActionKey = "target"
34 |     public static let viewModel: ActionKey = "viewModel"
   |                       |- warning: static property 'viewModel' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'viewModel' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |     public static let window: ActionKey = "window"
36 | }
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:35:23: warning: static property 'window' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
33 |     public static let target: ActionKey = "target"
34 |     public static let viewModel: ActionKey = "viewModel"
35 |     public static let window: ActionKey = "window"
   |                       |- warning: static property 'window' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'window' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | }
37 |
[25/26] Compiling Actions ActionNotification.swift
[26/26] Compiling Actions ActionManager.swift
/host/spi-builder-workspace/Sources/Actions/ActionManager.swift:13:12: warning: let 'actionChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
 11 |  */
 12 |
 13 | public let actionChannel = Channel("com.elegantchaos.actions")
    |            `- warning: let 'actionChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
 14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
 15 |
/host/spi-builder-workspace/.build/checkouts/Logger/Sources/Logger/Channel.swift:15:14: note: class 'Channel' does not conform to the 'Sendable' protocol
 13 |  */
 14 |
 15 | public class Channel {
    |              `- note: class 'Channel' does not conform to the 'Sendable' protocol
 16 |     /**
 17 |      Default log handler which prints to standard out,
/host/spi-builder-workspace/Sources/Actions/ActionManager.swift:7:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Logger'
  5 |
  6 | import Foundation
  7 | import Logger
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Logger'
  8 |
  9 | /**
    :
 11 |  */
 12 |
 13 | public let actionChannel = Channel("com.elegantchaos.actions")
    |            |- note: annotate 'actionChannel' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
 15 |
/host/spi-builder-workspace/Sources/Actions/ActionManager.swift:14:12: warning: let 'providerChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | public let actionChannel = Channel("com.elegantchaos.actions")
 14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
    |            |- warning: let 'providerChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
    |            |- note: annotate 'providerChannel' with '@MainActor' if property should only be accessed from the main actor
    |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |
 16 | public protocol ActionResponder {
/host/spi-builder-workspace/.build/checkouts/Logger/Sources/Logger/Channel.swift:15:14: note: class 'Channel' does not conform to the 'Sendable' protocol
 13 |  */
 14 |
 15 | public class Channel {
    |              `- note: class 'Channel' does not conform to the 'Sendable' protocol
 16 |     /**
 17 |      Default log handler which prints to standard out,
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
24 |     public static let info: ActionKey = "info"
25 |     public static let model: ActionKey = "model"
26 |     public static let notification: ActionKey = "notification"
   |                       |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'notification' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |     public static let object: ActionKey = "object"
28 |     public static let observer: ActionKey = "observer"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:32:23: warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
 6 | import Foundation
 7 |
 8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
 9 |     public let value: String
10 |     public init(_ value: String) { self.value = value }
   :
30 |     public static let selection: ActionKey = "selection"
31 |     public static let sender: ActionKey = "sender"
32 |     public static let skipValidation: ActionKey = "skipValidation"
   |                       |- warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'skipValidation' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     public static let target: ActionKey = "target"
34 |     public static let viewModel: ActionKey = "viewModel"
[28/29] Emitting module ActionsTestSupport
[29/29] Compiling ActionsTestSupport ActionsTestSupport.swift
Build complete! (10.85s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "logger",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.5.3",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/elegantchaos/Logger.git"
    }
  ],
  "manifest_display_name" : "Actions",
  "name" : "Actions",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "Actions",
      "targets" : [
        "Actions"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ActionsTestSupport",
      "targets" : [
        "ActionsTestSupport"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ActionsTests",
      "module_type" : "SwiftTarget",
      "name" : "ActionsTests",
      "path" : "Tests/ActionsTests",
      "sources" : [
        "ActionContextTests.swift",
        "ActionIdentificationTests.swift",
        "ActionObserverTests.swift",
        "ActionSerializationTests.swift",
        "ActionsNotificationTests.swift",
        "ActionsTests.swift",
        "DelegatedActionTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Actions",
        "ActionsTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ActionsTestSupport",
      "module_type" : "SwiftTarget",
      "name" : "ActionsTestSupport",
      "path" : "Sources/ActionsTestSupport",
      "product_memberships" : [
        "ActionsTestSupport"
      ],
      "sources" : [
        "ActionsTestSupport.swift"
      ],
      "target_dependencies" : [
        "Actions"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Actions",
      "module_type" : "SwiftTarget",
      "name" : "Actions",
      "path" : "Sources/Actions",
      "product_dependencies" : [
        "Logger"
      ],
      "product_memberships" : [
        "Actions",
        "ActionsTestSupport"
      ],
      "sources" : [
        "Action.swift",
        "ActionContext.swift",
        "ActionIdentification.swift",
        "ActionInfo.swift",
        "ActionKey.swift",
        "ActionManager.swift",
        "ActionNotification.swift",
        "ActionSerialisation.swift",
        "DecodableWithContext.swift",
        "DelegatedAction.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.