IOS-5286 Drop iOS 16 support, update minimum to iOS 17.0 #937
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: License Checks | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
license-checks: | |
name: License Checks | |
runs-on: macos-15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Xcode Cache | |
uses: irgaly/xcode-cache@v1 | |
with: | |
key: xcode-cache-deriveddata-${{ github.sha }} | |
restore-keys: xcode-cache-deriveddata- | |
swiftpm-cache-key: spm-soucepackages-${{ hashFiles('Anytype.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved') }} | |
swiftpm-cache-restore-keys: spm-soucepackages- | |
sourcepackages-directory: ./build/SourcePackages | |
cache-read-only: true | |
- name: Prepare deps | |
uses: ./.github/actions/prepare-deps | |
- name: Setup Xcode | |
uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: '26.0' | |
- name: Download Middleware | |
run: make setup-middle-ci | |
env: | |
MIDDLEWARE_TOKEN: ${{ secrets.MIDDLEWARE_TOKEN }} | |
- name: License Checks | |
uses: ./.github/actions/license-checks |