Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: macOS-15
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app
Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: macOS-15
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app
Expand All @@ -68,7 +68,7 @@ jobs:
runs-on: macOS-15
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-secondary-platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
working-directory: ./RNExample/ios
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cross-platform-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
runs-on: macOS-15
steps:
- name: "Checkout Cross Platform Tests"
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: "true"
repository: mParticle/crossplatform-sdk-tests
fetch-depth: 1
- name: "Checkout iOS SDK"
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.head_ref }}
path: .sdks/apple
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/native-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: macOS-15
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sdk-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
needs: confirm-main-branch
steps:
- name: Checkout main branch
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: ${{ github.repository }}
token: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }}
Expand All @@ -43,7 +43,7 @@ jobs:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
steps:
- name: Checkout main branch
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
repository: ${{ github.repository }}
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
runs-on: macOS-15
steps:
- name: Checkout main branch
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
repository: ${{ github.repository }}
Expand Down
Loading