diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ac3711c..d5871b0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,10 +11,10 @@ on: jobs: build: - runs-on: macos-12 + runs-on: macos-13 env: - XCODE: /Applications/Xcode_14.0.app - XCODE_SDK: iphoneos16.0 + XCODE: /Applications/Xcode_14.3.1.app + XCODE_SDK: iphoneos16.4 steps: - uses: actions/checkout@v3 - name: Select Xcode Version @@ -51,9 +51,10 @@ jobs: CODE_SIGNING_ALLOWED=NO \ CODE_SIGN_IDENTITY= \ PROVISIONING_PROFILE= - - name: Check uncommitted unformatted code - run: | - ./lint-format.sh + # SwiftLint, SwiftFormat/CLI が Swift 5.8 に対応していないため一時的にコメントアウトする + #- name: Check uncommitted unformatted code + # run: | + # ./lint-format.sh release: if: contains(github.ref, 'tags/v') needs: [build] diff --git a/CHANGES.md b/CHANGES.md index 3788d5b..6703465 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,13 @@ ## develop +## sora-ios-sdk-2023.3.0 + +- [UPDATE] SwiftLint, SwiftFormat/CLI を一時的にコメントアウトする + - SwiftLint, SwiftFormat/CLI が Swift Swift 5.9 に対応できていないため + - 対応が完了したら戻す + - @miosakuma + ## sora-ios-sdk-2023.2.0 - [UPDATE] システム条件を変更する diff --git a/Podfile b/Podfile index dca73e6..d4925ba 100644 --- a/Podfile +++ b/Podfile @@ -5,8 +5,9 @@ platform :ios, '13.0' target 'SoraQuickStart' do use_frameworks! - pod 'Sora', '2023.2.0' - pod 'SwiftLint' - pod 'SwiftFormat/CLI' + pod 'Sora', '2023.3.0' +# SwiftLint, SwiftFormat/CLI が Swift 5.8 に対応していないため一時的にコメントアウトする +# pod 'SwiftLint' +# pod 'SwiftFormat/CLI' end