This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 18

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/elegantchaos/Actions.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/elegantchaos/Actions
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 5775f81 added license
Cloned https://github.com/elegantchaos/Actions.git
Revision (git rev-parse @):
5775f81ab9d782b063580532b05e43be1eb470a0
SUCCESS checkout https://github.com/elegantchaos/Actions.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/elegantchaos/Actions.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-6F35C1178C84523A.txt
[5/12] Compiling Logger PrintHandler.swift
[6/12] Compiling Logger OSLogHandler.swift
[7/12] Compiling Logger Handler.swift
[8/12] Compiling Logger NSLogHandler.swift
[9/12] Emitting module Logger
[10/12] Compiling Logger Context.swift
[11/12] Compiling Logger Manager.swift
[12/12] Compiling Logger Channel.swift
[13/22] Compiling Actions DecodableWithContext.swift
[14/23] Compiling Actions ActionNotification.swift
[15/23] Compiling Actions ActionSerialisation.swift
[16/23] Compiling Actions DelegatedAction.swift
[17/23] Compiling Actions ActionKey.swift
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
[18/23] Compiling Actions ActionContext.swift
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
[19/23] Compiling Actions ActionIdentification.swift
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionIdentification.swift:18:13: warning: var 'actionIDKey' is not concurrency-safe because it is non-isolated 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 non-isolated 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 {
[20/23] Compiling Actions Action.swift
[21/23] Emitting module Actions
/Users/admin/builder/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"
/Users/admin/builder/spi-builder-workspace/Sources/Actions/ActionIdentification.swift:18:13: warning: var 'actionIDKey' is not concurrency-safe because it is non-isolated 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 non-isolated 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 {
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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 | }
/Users/admin/builder/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 |
/Users/admin/builder/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 |
/Users/admin/builder/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 |     /**
/Users/admin/builder/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 |
/Users/admin/builder/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 {
/Users/admin/builder/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 |     /**
[22/23] Compiling Actions ActionManager.swift
/Users/admin/builder/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 |
/Users/admin/builder/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 |     /**
/Users/admin/builder/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 |
/Users/admin/builder/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 {
/Users/admin/builder/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 |     /**
/Users/admin/builder/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"
/Users/admin/builder/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"
[23/23] Compiling Actions ActionInfo.swift
/Users/admin/builder/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"
/Users/admin/builder/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"
/Users/admin/builder/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"
[24/25] Compiling ActionsTestSupport ActionsTestSupport.swift
/Users/admin/builder/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
    |            |- 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 |
/Users/admin/builder/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 |     /**
[25/25] Emitting module ActionsTestSupport
Build complete! (31.89s)
Fetching https://github.com/elegantchaos/Logger.git
[1/1847] Fetching logger
Fetched https://github.com/elegantchaos/Logger.git from cache (1.04s)
Computing version for https://github.com/elegantchaos/Logger.git
Computed https://github.com/elegantchaos/Logger.git at 1.5.3 (0.65s)
Creating working copy for https://github.com/elegantchaos/Logger.git
Working copy of https://github.com/elegantchaos/Logger.git resolved at 1.5.3
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" : "/Users/admin/builder/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"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.