The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build WelcomeWindow, reference main (92e263), with Swift 6.2 (beta) for macOS (SPM) on 3 Jul 2025 18:17:53 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/CodeEditApp/WelcomeWindow.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/CodeEditApp/WelcomeWindow
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 92e263e Upload Demo Header Via Link
Cloned https://github.com/CodeEditApp/WelcomeWindow.git
Revision (git rev-parse @):
92e263e5cbf0ad5965783af68d970001492f4147
SUCCESS checkout https://github.com/CodeEditApp/WelcomeWindow.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/CodeEditApp/WelcomeWindow.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[1/1] Compiling plugin SwiftLintFix
[2/2] Compiling plugin SwiftLint
Building for debugging...
[2/4] Write sources
[3/4] Write swift-version-1EA4D86E10B52AF.txt
[5/23] Compiling WelcomeWindow NSDocumentController+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:193:17: warning: capture of 'onCancel' with non-sendable type '() -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
191 |         panel.begin { result in
192 |             guard result == .OK, let selectedURL = panel.url else {
193 |                 onCancel()
    |                 |- warning: capture of 'onCancel' with non-sendable type '() -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
194 |                 return
195 |             }
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:197:62: warning: capture of 'onCompletion' with non-sendable type '() -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
195 |             }
196 |
197 |             self.openDocument(at: selectedURL, onCompletion: onCompletion, onError: { _ in onCancel() })
    |                                                              |- warning: capture of 'onCompletion' with non-sendable type '() -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                                                              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
198 |         }
199 |         onDialogPresented()
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:192:58: error: main actor-isolated property 'url' can not be referenced from a Sendable closure
190 |
191 |         panel.begin { result in
192 |             guard result == .OK, let selectedURL = panel.url else {
    |                                                          `- error: main actor-isolated property 'url' can not be referenced from a Sendable closure
193 |                 onCancel()
194 |                 return
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSavePanel.h:39:45: note: property declared here
 37 |  `NSOpenPanel`: Returns the single filename selected by the user. Note: if -allowsMultipleSelection is set, you should use the -URLs on NSOpenPanel instead.
 38 |  */
 39 | @property (nullable, readonly, copy) NSURL *URL;
    |                                             `- note: property declared here
 40 |
 41 | // MARK: - Configuration Properties
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:197:18: error: call to main actor-isolated instance method 'openDocument(at:onCompletion:onError:)' in a synchronous nonisolated context [#ActorIsolatedCall]
195 |             }
196 |
197 |             self.openDocument(at: selectedURL, onCompletion: onCompletion, onError: { _ in onCancel() })
    |                  `- error: call to main actor-isolated instance method 'openDocument(at:onCompletion:onError:)' in a synchronous nonisolated context [#ActorIsolatedCall]
198 |         }
199 |         onDialogPresented()
    :
207 |     ///   - onError: Called if an error occurs while opening the document. Default is an empty closure.
208 |     @MainActor
209 |     public func openDocument(
    |                 `- note: calls to instance method 'openDocument(at:onCompletion:onError:)' from outside of its actor context are implicitly asynchronous
210 |         at url: URL,
211 |         onCompletion: @escaping () -> Void = {},
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:197:92: warning: capture of 'onCancel' with non-sendable type '() -> Void' in an isolated closure
195 |             }
196 |
197 |             self.openDocument(at: selectedURL, onCompletion: onCompletion, onError: { _ in onCancel() })
    |                                                                                            |- warning: capture of 'onCancel' with non-sendable type '() -> Void' in an isolated closure
    |                                                                                            `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
198 |         }
199 |         onDialogPresented()
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:223:17: warning: capture of 'onError' with non-sendable type '(any Error) -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
221 |                     NSAlert(error: error).runModal()
222 |                 }
223 |                 onError(error)
    |                 |- warning: capture of 'onError' with non-sendable type '(any Error) -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
224 |             } else {
225 |                 RecentsStore.documentOpened(at: url)
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:229:17: warning: capture of 'onCompletion' with non-sendable type '() -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
227 |                     NSApp.activate(ignoringOtherApps: true)
228 |                 }
229 |                 onCompletion()
    |                 |- warning: capture of 'onCompletion' with non-sendable type '() -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
230 |             }
231 |         }
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:218:34: error: call to main actor-isolated static method 'endAccessing' in a synchronous nonisolated context [#ActorIsolatedCall]
216 |             if let error {
217 |                 if accessGranted {
218 |                     RecentsStore.endAccessing(url)
    |                                  `- error: call to main actor-isolated static method 'endAccessing' in a synchronous nonisolated context [#ActorIsolatedCall]
219 |                 }
220 |                 DispatchQueue.main.async {
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/RecentsStore.swift:130:24: note: calls to static method 'endAccessing' from outside of its actor context are implicitly asynchronous
128 |     ///
129 |     /// - Parameter url: The URL of the project to stop accessing.
130 |     public static func endAccessing(_ url: URL) {
    |                        `- note: calls to static method 'endAccessing' from outside of its actor context are implicitly asynchronous
131 |         url.stopAccessingSecurityScopedResource()
132 |     }
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:225:30: error: call to main actor-isolated static method 'documentOpened(at:)' in a synchronous nonisolated context [#ActorIsolatedCall]
223 |                 onError(error)
224 |             } else {
225 |                 RecentsStore.documentOpened(at: url)
    |                              `- error: call to main actor-isolated static method 'documentOpened(at:)' in a synchronous nonisolated context [#ActorIsolatedCall]
226 |                 DispatchQueue.main.async {
227 |                     NSApp.activate(ignoringOtherApps: true)
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/RecentsStore.swift:80:24: note: calls to static method 'documentOpened(at:)' from outside of its actor context are implicitly asynchronous
 78 |     ///
 79 |     /// - Parameter url: The file URL of the opened document.
 80 |     public static func documentOpened(at url: URL) {
    |                        `- note: calls to static method 'documentOpened(at:)' from outside of its actor context are implicitly asynchronous
 81 |         do {
 82 |             let bookmark = try url.bookmarkData(
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/RecentsStore.swift:197:17: error: main actor-isolated static property 'logger' can not be referenced from a Sendable closure
 40 |     }
 41 |
 42 |     private static let logger = Logger(
    |                        `- note: static property declared here
 43 |         subsystem: Bundle.main.bundleIdentifier ?? "com.example.app",
 44 |         category: "RecentsStore"
    :
195 |         CSSearchableIndex.default().indexSearchableItems(searchableItems) { error in
196 |             if let error = error {
197 |                 logger.error("Failed to donate recent projects, error: \(error.localizedDescription)")
    |                 `- error: main actor-isolated static property 'logger' can not be referenced from a Sendable closure
198 |             }
199 |         }
[#ActorIsolatedCall]: <https://docs.swift.org/compiler/documentation/diagnostics/actor-isolated-call>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[6/23] Compiling WelcomeWindow RecentsStore.swift
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:193:17: warning: capture of 'onCancel' with non-sendable type '() -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
191 |         panel.begin { result in
192 |             guard result == .OK, let selectedURL = panel.url else {
193 |                 onCancel()
    |                 |- warning: capture of 'onCancel' with non-sendable type '() -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
194 |                 return
195 |             }
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:197:62: warning: capture of 'onCompletion' with non-sendable type '() -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
195 |             }
196 |
197 |             self.openDocument(at: selectedURL, onCompletion: onCompletion, onError: { _ in onCancel() })
    |                                                              |- warning: capture of 'onCompletion' with non-sendable type '() -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                                                              `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
198 |         }
199 |         onDialogPresented()
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:192:58: error: main actor-isolated property 'url' can not be referenced from a Sendable closure
190 |
191 |         panel.begin { result in
192 |             guard result == .OK, let selectedURL = panel.url else {
    |                                                          `- error: main actor-isolated property 'url' can not be referenced from a Sendable closure
193 |                 onCancel()
194 |                 return
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSSavePanel.h:39:45: note: property declared here
 37 |  `NSOpenPanel`: Returns the single filename selected by the user. Note: if -allowsMultipleSelection is set, you should use the -URLs on NSOpenPanel instead.
 38 |  */
 39 | @property (nullable, readonly, copy) NSURL *URL;
    |                                             `- note: property declared here
 40 |
 41 | // MARK: - Configuration Properties
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:197:18: error: call to main actor-isolated instance method 'openDocument(at:onCompletion:onError:)' in a synchronous nonisolated context [#ActorIsolatedCall]
195 |             }
196 |
197 |             self.openDocument(at: selectedURL, onCompletion: onCompletion, onError: { _ in onCancel() })
    |                  `- error: call to main actor-isolated instance method 'openDocument(at:onCompletion:onError:)' in a synchronous nonisolated context [#ActorIsolatedCall]
198 |         }
199 |         onDialogPresented()
    :
207 |     ///   - onError: Called if an error occurs while opening the document. Default is an empty closure.
208 |     @MainActor
209 |     public func openDocument(
    |                 `- note: calls to instance method 'openDocument(at:onCompletion:onError:)' from outside of its actor context are implicitly asynchronous
210 |         at url: URL,
211 |         onCompletion: @escaping () -> Void = {},
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:197:92: warning: capture of 'onCancel' with non-sendable type '() -> Void' in an isolated closure
195 |             }
196 |
197 |             self.openDocument(at: selectedURL, onCompletion: onCompletion, onError: { _ in onCancel() })
    |                                                                                            |- warning: capture of 'onCancel' with non-sendable type '() -> Void' in an isolated closure
    |                                                                                            `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
198 |         }
199 |         onDialogPresented()
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:223:17: warning: capture of 'onError' with non-sendable type '(any Error) -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
221 |                     NSAlert(error: error).runModal()
222 |                 }
223 |                 onError(error)
    |                 |- warning: capture of 'onError' with non-sendable type '(any Error) -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
224 |             } else {
225 |                 RecentsStore.documentOpened(at: url)
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:229:17: warning: capture of 'onCompletion' with non-sendable type '() -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
227 |                     NSApp.activate(ignoringOtherApps: true)
228 |                 }
229 |                 onCompletion()
    |                 |- warning: capture of 'onCompletion' with non-sendable type '() -> Void' in a '@Sendable' closure [#SendableClosureCaptures]
    |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
230 |             }
231 |         }
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:218:34: error: call to main actor-isolated static method 'endAccessing' in a synchronous nonisolated context [#ActorIsolatedCall]
216 |             if let error {
217 |                 if accessGranted {
218 |                     RecentsStore.endAccessing(url)
    |                                  `- error: call to main actor-isolated static method 'endAccessing' in a synchronous nonisolated context [#ActorIsolatedCall]
219 |                 }
220 |                 DispatchQueue.main.async {
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/RecentsStore.swift:130:24: note: calls to static method 'endAccessing' from outside of its actor context are implicitly asynchronous
128 |     ///
129 |     /// - Parameter url: The URL of the project to stop accessing.
130 |     public static func endAccessing(_ url: URL) {
    |                        `- note: calls to static method 'endAccessing' from outside of its actor context are implicitly asynchronous
131 |         url.stopAccessingSecurityScopedResource()
132 |     }
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/NSDocumentController+Extensions.swift:225:30: error: call to main actor-isolated static method 'documentOpened(at:)' in a synchronous nonisolated context [#ActorIsolatedCall]
223 |                 onError(error)
224 |             } else {
225 |                 RecentsStore.documentOpened(at: url)
    |                              `- error: call to main actor-isolated static method 'documentOpened(at:)' in a synchronous nonisolated context [#ActorIsolatedCall]
226 |                 DispatchQueue.main.async {
227 |                     NSApp.activate(ignoringOtherApps: true)
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/RecentsStore.swift:80:24: note: calls to static method 'documentOpened(at:)' from outside of its actor context are implicitly asynchronous
 78 |     ///
 79 |     /// - Parameter url: The file URL of the opened document.
 80 |     public static func documentOpened(at url: URL) {
    |                        `- note: calls to static method 'documentOpened(at:)' from outside of its actor context are implicitly asynchronous
 81 |         do {
 82 |             let bookmark = try url.bookmarkData(
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Model/RecentsStore.swift:197:17: error: main actor-isolated static property 'logger' can not be referenced from a Sendable closure
 40 |     }
 41 |
 42 |     private static let logger = Logger(
    |                        `- note: static property declared here
 43 |         subsystem: Bundle.main.bundleIdentifier ?? "com.example.app",
 44 |         category: "RecentsStore"
    :
195 |         CSSearchableIndex.default().indexSearchableItems(searchableItems) { error in
196 |             if let error = error {
197 |                 logger.error("Failed to donate recent projects, error: \(error.localizedDescription)")
    |                 `- error: main actor-isolated static property 'logger' can not be referenced from a Sendable closure
198 |             }
199 |         }
[#ActorIsolatedCall]: <https://docs.swift.org/compiler/documentation/diagnostics/actor-isolated-call>
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[7/25] Compiling WelcomeWindow URL+isDirectory.swift
[8/25] Compiling WelcomeWindow View+Cursor.swift
[9/25] Compiling WelcomeWindow WelcomeButton.swift
[10/25] Compiling WelcomeWindow WelcomeView.swift
[11/25] Compiling WelcomeWindow NSApp+WindowActions.swift
[12/25] Compiling WelcomeWindow NSImage+dominantColor.swift
[13/25] Compiling WelcomeWindow DefaultSceneID.swift
[14/25] Compiling WelcomeWindow FocusRingModifier.swift
[15/25] Compiling WelcomeWindow WelcomeActions.swift
[16/25] Compiling WelcomeWindow Bundle+Info.swift
[17/25] Compiling WelcomeWindow DocumentSaveDialogConfiguration.swift
[18/25] Compiling WelcomeWindow FocusTarget.swift
[19/25] Compiling WelcomeWindow ActionsBuilder.swift
[20/25] Compiling WelcomeWindow DocumentOpenDialogConfiguration.swift
[21/25] Compiling WelcomeWindow RecentsListItem.swift
[22/25] Compiling WelcomeWindow RecentsListView.swift
[23/25] Emitting module WelcomeWindow
[24/25] Compiling WelcomeWindow WelcomeWindow.swift
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Views/WelcomeWindowView.swift:48:32: warning: capture of non-sendable type 'RecentsView.Type' in an isolated closure
 46 |     }
 47 |
 48 |     public var body: some View {
    |                                `- warning: capture of non-sendable type 'RecentsView.Type' in an isolated closure
 49 |         let dismiss = dismissWindow.callAsFunction
 50 |         let actions = buildActions(dismiss)
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Views/WelcomeWindowView.swift:48:32: warning: capture of non-sendable type 'SubtitleView.Type' in an isolated closure
 46 |     }
 47 |
 48 |     public var body: some View {
    |                                `- warning: capture of non-sendable type 'SubtitleView.Type' in an isolated closure
 49 |         let dismiss = dismissWindow.callAsFunction
 50 |         let actions = buildActions(dismiss)
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Views/WelcomeWindowView.swift:105:29: warning: capture of non-sendable type 'RecentsView.Type' in an isolated closure
103 |                     if let data, let url = URL(dataRepresentation: data, relativeTo: nil) {
104 |                         Task { @MainActor in
105 |                             onDrop?(url, dismiss)
    |                             `- warning: capture of non-sendable type 'RecentsView.Type' in an isolated closure
106 |                         }
107 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Views/WelcomeWindowView.swift:105:29: warning: capture of non-sendable type 'SubtitleView.Type' in an isolated closure
103 |                     if let data, let url = URL(dataRepresentation: data, relativeTo: nil) {
104 |                         Task { @MainActor in
105 |                             onDrop?(url, dismiss)
    |                             `- warning: capture of non-sendable type 'SubtitleView.Type' in an isolated closure
106 |                         }
107 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Views/WelcomeWindowView.swift:48:32: warning: capture of non-sendable type 'RecentsView.Type' in an isolated closure
 46 |     }
 47 |
 48 |     public var body: some View {
    |                                `- warning: capture of non-sendable type 'RecentsView.Type' in an isolated closure
 49 |         let dismiss = dismissWindow.callAsFunction
 50 |         let actions = buildActions(dismiss)
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Views/WelcomeWindowView.swift:48:32: warning: capture of non-sendable type 'SubtitleView.Type' in an isolated closure
 46 |     }
 47 |
 48 |     public var body: some View {
    |                                `- warning: capture of non-sendable type 'SubtitleView.Type' in an isolated closure
 49 |         let dismiss = dismissWindow.callAsFunction
 50 |         let actions = buildActions(dismiss)
[25/25] Compiling WelcomeWindow WelcomeWindowView.swift
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Views/WelcomeWindowView.swift:48:32: warning: capture of non-sendable type 'RecentsView.Type' in an isolated closure
 46 |     }
 47 |
 48 |     public var body: some View {
    |                                `- warning: capture of non-sendable type 'RecentsView.Type' in an isolated closure
 49 |         let dismiss = dismissWindow.callAsFunction
 50 |         let actions = buildActions(dismiss)
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Views/WelcomeWindowView.swift:48:32: warning: capture of non-sendable type 'SubtitleView.Type' in an isolated closure
 46 |     }
 47 |
 48 |     public var body: some View {
    |                                `- warning: capture of non-sendable type 'SubtitleView.Type' in an isolated closure
 49 |         let dismiss = dismissWindow.callAsFunction
 50 |         let actions = buildActions(dismiss)
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Views/WelcomeWindowView.swift:105:29: warning: capture of non-sendable type 'RecentsView.Type' in an isolated closure
103 |                     if let data, let url = URL(dataRepresentation: data, relativeTo: nil) {
104 |                         Task { @MainActor in
105 |                             onDrop?(url, dismiss)
    |                             `- warning: capture of non-sendable type 'RecentsView.Type' in an isolated closure
106 |                         }
107 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Views/WelcomeWindowView.swift:105:29: warning: capture of non-sendable type 'SubtitleView.Type' in an isolated closure
103 |                     if let data, let url = URL(dataRepresentation: data, relativeTo: nil) {
104 |                         Task { @MainActor in
105 |                             onDrop?(url, dismiss)
    |                             `- warning: capture of non-sendable type 'SubtitleView.Type' in an isolated closure
106 |                         }
107 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Views/WelcomeWindowView.swift:48:32: warning: capture of non-sendable type 'RecentsView.Type' in an isolated closure
 46 |     }
 47 |
 48 |     public var body: some View {
    |                                `- warning: capture of non-sendable type 'RecentsView.Type' in an isolated closure
 49 |         let dismiss = dismissWindow.callAsFunction
 50 |         let actions = buildActions(dismiss)
/Users/admin/builder/spi-builder-workspace/Sources/WelcomeWindow/Views/WelcomeWindowView.swift:48:32: warning: capture of non-sendable type 'SubtitleView.Type' in an isolated closure
 46 |     }
 47 |
 48 |     public var body: some View {
    |                                `- warning: capture of non-sendable type 'SubtitleView.Type' in an isolated closure
 49 |         let dismiss = dismissWindow.callAsFunction
 50 |         let actions = buildActions(dismiss)
Fetching https://github.com/lukepistrol/SwiftLintPlugin
[1/358] Fetching swiftlintplugin
Fetched https://github.com/lukepistrol/SwiftLintPlugin from cache (0.66s)
Computing version for https://github.com/lukepistrol/SwiftLintPlugin
Computed https://github.com/lukepistrol/SwiftLintPlugin at 0.59.1 (3.41s)
Creating working copy for https://github.com/lukepistrol/SwiftLintPlugin
Working copy of https://github.com/lukepistrol/SwiftLintPlugin resolved at 0.59.1
Downloading binary artifact https://github.com/realm/SwiftLint/releases/download/0.59.1/SwiftLintBinary.artifactbundle.zip
[15565/41085097] Downloading https://github.com/realm/SwiftLint/releases/download/0.59.1/SwiftLintBinary.artifactbundle.zip
Downloaded https://github.com/realm/SwiftLint/releases/download/0.59.1/SwiftLintBinary.artifactbundle.zip (2.43s)
BUILD FAILURE 6.2 macosSpm