use xcode 15.3 (#4253)

* use xcode 15.3

* tweak cache update
zio/stable
Hailey 2024-05-29 01:50:06 -07:00 committed by GitHub
parent 211eff3d32
commit 613884a3d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 4 deletions

View File

@ -123,11 +123,11 @@ jobs:
- name: ⬇️ Restore Cache - name: ⬇️ Restore Cache
id: get-base-commit id: get-base-commit
uses: actions/cache@v4 uses: actions/cache@v4
if: ${{ inputs.profile == 'testflight' && github.ref == 'refs/heads/main' }} if: ${{ inputs.profile == 'testflight' }}
with: with:
path: most-recent-testflight-commit.txt path: most-recent-testflight-commit.txt
key: most-recent-testflight-commit key: most-recent-testflight-commit
- name: ✏️ Write commit hash to cache - name: ✏️ Write commit hash to cache
if: ${{ inputs.profile == 'testflight' && github.ref == 'refs/heads/main' }} if: ${{ inputs.profile == 'testflight' }}
run: echo ${{ github.sha }} > most-recent-testflight-commit.txt run: echo ${{ github.sha }} > most-recent-testflight-commit.txt

View File

@ -47,6 +47,10 @@ jobs:
- name: ⚙️ Install dependencies - name: ⚙️ Install dependencies
run: yarn install run: yarn install
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.3'
- name: ☕️ Setup Cocoapods - name: ☕️ Setup Cocoapods
uses: maxim-lobanov/setup-cocoapods@v1 uses: maxim-lobanov/setup-cocoapods@v1
with: with:
@ -80,11 +84,11 @@ jobs:
- name: ⬇️ Restore Cache - name: ⬇️ Restore Cache
id: get-base-commit id: get-base-commit
uses: actions/cache@v4 uses: actions/cache@v4
if: ${{ inputs.profile == 'testflight' && github.ref == 'refs/heads/main' }} if: ${{ inputs.profile == 'testflight' }}
with: with:
path: most-recent-testflight-commit.txt path: most-recent-testflight-commit.txt
key: most-recent-testflight-commit key: most-recent-testflight-commit
- name: ✏️ Write commit hash to cache - name: ✏️ Write commit hash to cache
if: ${{ inputs.profile == 'testflight' && github.ref == 'refs/heads/main' }} if: ${{ inputs.profile == 'testflight' }}
run: echo ${{ github.sha }} > most-recent-testflight-commit.txt run: echo ${{ github.sha }} > most-recent-testflight-commit.txt

View File

@ -170,6 +170,10 @@ jobs:
- name: ⚙️ Install dependencies - name: ⚙️ Install dependencies
run: yarn install run: yarn install
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.3'
- name: ☕️ Setup Cocoapods - name: ☕️ Setup Cocoapods
uses: maxim-lobanov/setup-cocoapods@v1 uses: maxim-lobanov/setup-cocoapods@v1
with: with: