diff --git a/.github/workflows/load-env.yaml b/.github/workflows/load-env.yaml index 891f4c4..d5cf331 100644 --- a/.github/workflows/load-env.yaml +++ b/.github/workflows/load-env.yaml @@ -24,7 +24,7 @@ on: description: 'Xcode version' type: string required: false - default: '26.0' + default: '26.4' macOS-runner-os: description: 'macOS runner OS (macos-15, macos-latest)' type: string diff --git a/.swift-version b/.swift-version index 6abaeb2..798e389 100644 --- a/.swift-version +++ b/.swift-version @@ -1 +1 @@ -6.2.0 +6.3.0 diff --git a/Package.swift b/Package.swift index dee8d8a..ee1f5b0 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version: 6.2 +// swift-tools-version: 6.3 // The swift-tools-version declares the minimum version of Swift required to build this package. import CompilerPluginSupport diff --git a/scripts/tools/swift/swift.sh b/scripts/tools/swift/swift.sh index 746339d..eb598ee 100755 --- a/scripts/tools/swift/swift.sh +++ b/scripts/tools/swift/swift.sh @@ -17,9 +17,7 @@ swift_install_sdk() { fi echo "SWIFT_VERSION_SHORT: ${SWIFT_VERSION_SHORT}" - SWIFT_SDK_FOLDER="swift-${SWIFT_VERSION_SHORT}-RELEASE_static-linux-0.0.1" - # For Swift 6.3 linux static SDK version is 0.1.0 - # SWIFT_SDK_FOLDER="swift-${SWIFT_VERSION_SHORT}-RELEASE_static-linux-0.1.0" + SWIFT_SDK_FOLDER="swift-${SWIFT_VERSION_SHORT}-RELEASE_static-linux-0.1.0" ARTIFACT_BUNDLE_FILE="${SWIFT_SDK_FOLDER}.artifactbundle" if ! swift sdk list | grep "${SWIFT_SDK_FOLDER}" > /dev/null; then @@ -34,7 +32,7 @@ swift_install_sdk() { SDK_URL="https://download.swift.org/swift-${SWIFT_VERSION_SHORT}-release/static-sdk/swift-${SWIFT_VERSION_SHORT}-RELEASE/${ARTIFACT_BUNDLE_FILE}.tar.gz" echo "SDK URL: ${SDK_URL}" - echo "Copied SDK URL: https://download.swift.org/swift-6.2-release/static-sdk/swift-6.2-RELEASE/swift-6.2-RELEASE_static-linux-0.0.1.artifactbundle.tar.gz" + echo "Copied SDK URL: https://download.swift.org/swift-6.3-release/static-sdk/swift-6.3-RELEASE/swift-6.3-RELEASE_static-linux-0.1.0.artifactbundle.tar.gz" echo "Downloading Swift SDK..." curl --output "/tmp/${ARTIFACT_BUNDLE_FILE}.tar.gz" "${SDK_URL}"