Skip to content

Commit 84e9c56

Browse files
MOB-853 Deprecating SDK in favour of new SDK (#77)
* MOB-853 Deprecating SDK in favour of new SDK - Added deprecating tags and messages to app header files that are publicly used by developers * - Updated Bundler with latest gems - Updated workflow action to latest versions for check out and Java
1 parent 37356c1 commit 84e9c56

8 files changed

Lines changed: 161 additions & 136 deletions

File tree

.github/workflows/SonarCloud.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: SonarCloud
1111
runs-on: macos-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
with:
1515
fetch-depth: 0
1616
- name: Setup environment
@@ -29,10 +29,11 @@ jobs:
2929
-destination 'platform=iOS Simulator,name=iPhone 8,OS=14.4'\
3030
test
3131
32-
- name: Set up JDK 11
33-
uses: actions/setup-java@v1
32+
- name: Set up JDK 17
33+
uses: actions/setup-java@v3.10.0
3434
with:
35-
java-version: 11
35+
distribution: 'temurin'
36+
java-version: 17
3637

3738
- name: SonarCloud Analysis
3839
env:

.github/workflows/deploy_to_cocoapods.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
runs-on: macos-latest
1212
steps:
13-
- uses: actions/checkout@v1
13+
- uses: actions/checkout@v3
1414
- name: Install Cocoapods
1515
run: gem install cocoapods
1616

.github/workflows/primary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Code quality Checks
1010

1111
steps:
12-
- uses: actions/checkout@v1
12+
- uses: actions/checkout@v3
1313
- name: Danger
1414
uses: docker://ghcr.io/danger/danger-swift-with-swiftlint:3.9.1
1515
with:
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
2727

2828
- name: Setup environment
2929
run: |

0 commit comments

Comments
 (0)