Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MOB-853 Deprecating SDK in favour of new SDK #77

Merged
merged 2 commits into from
Nov 23, 2023
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
9 changes: 5 additions & 4 deletions .github/workflows/SonarCloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: SonarCloud
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup environment
Expand All @@ -29,10 +29,11 @@ jobs:
-destination 'platform=iOS Simulator,name=iPhone 8,OS=14.4'\
test

- name: Set up JDK 11
uses: actions/setup-java@v1
- name: Set up JDK 17
uses: actions/setup-java@v3.10.0
with:
java-version: 11
distribution: 'temurin'
java-version: 17

- name: SonarCloud Analysis
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_to_cocoapods.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Install Cocoapods
run: gem install cocoapods

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/primary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Code quality Checks

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Danger
uses: docker://ghcr.io/danger/danger-swift-with-swiftlint:3.9.1
with:
Expand All @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup environment
run: |
Expand Down
Loading