Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/automation-trigger-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
BROWSERSTACK_USER: ${{ secrets.BROWSER_STACK_USER }}
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install the Apple certificate and provisioning profile
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
echo "::add-mask::$parsed"
echo "BrowserStackIOSBuildKey=$parsed" >> "$GITHUB_ENV"
- name: Cheout Automation Code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: BranchMetrics/qentelli-saas-sdk-testing-automation
token: ${{ secrets.BRANCHLET_ACCESS_TOKEN_PUBLIC }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Ruby 2.7
uses: ruby/setup-ruby@v1
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/post-release-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install pod, build project and run tests
run: |
./scripts/getSimulator
Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Run carthage command, build project and run tests
run: |
./scripts/getSimulator
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: build project and run tests
run: |
./scripts/getSimulator
Expand All @@ -43,7 +43,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install pod, build project and run tests
run: |
./scripts/getSimulator
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/pre-release-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install pod, build project and run tests
run: |
echo "branch=${{ github.ref }}" >> $GITHUB_OUTPUT
Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: macos-15
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Create Cart File, run carthage command, build project and run tests
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: build project and run tests
run: |
./scripts/getSimulator
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: build xcframework, then build project and run tests
run: |
./scripts/getSimulator
Expand All @@ -59,7 +59,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: build static xcframework, then build project and run tests
run: |
./scripts/getSimulator
Expand All @@ -71,7 +71,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install pod, build project and run tests
run: |
./scripts/getSimulator
Expand All @@ -83,7 +83,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Verify Integration using Carthage for tvOS
run: |
./scripts/getSimulator
Expand All @@ -94,7 +94,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: build xcframework, then build project and run tests
run: |
./scripts/getSimulator
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Run static analysis
run: |
xcodebuild analyze -project BranchSDK.xcodeproj
Expand All @@ -31,7 +31,7 @@ jobs:
# needs: [static-analysis]
# steps:
# - name: Check out code
# uses: actions/checkout@v4
# uses: actions/checkout@v5
# - name: Update Version
# run: |
# if [[ ${{ inputs.version }} == "patch" ]]; then
Expand All @@ -56,7 +56,7 @@ jobs:
needs: [static-analysis]
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install the Apple certificate
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
needs: [static-analysis]
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install the Apple certificate
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
needs: [static-analysis]
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Build static xcframework
run: |
./scripts/prep_static_xcframework.sh
Expand All @@ -158,7 +158,7 @@ jobs:
needs: [static-analysis]
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Build static xcframework
run: |
./scripts/prep_static_xcframework_noidfa.sh
Expand All @@ -175,7 +175,7 @@ jobs:
needs: [build-framework, build-static-framework, build-noidfa-framework, build-static-noidfa-framework]
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Ruby 2.7
uses: ruby/setup-ruby@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
timeout-minutes: 20
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Ruby 2.7
uses: ruby/setup-ruby@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Ruby 2.7
uses: ruby/setup-ruby@v1
with:
Expand Down
Loading