Skip to content

Commit

Permalink
NEVISACCESSAPP-6212: update gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-toth-leeder committed Oct 4, 2024
1 parent 89f80c4 commit 7d4275d
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/actions/create-tag/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
using: composite
steps:
- name: Create Tag
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
TAG_NAME: ${{ inputs.build-category }}/${{ inputs.app-version }}/${{ inputs.build-number }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-android/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
using: composite
steps:
- name: Setup Java JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ env.JAVA_VERSION }}
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/update-config/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ runs:
using: composite
steps:
- name: Update Configuration (loginRequestURL)
uses: jossef/action-set-json-field@v2.1
uses: jossef/action-set-json-field@v2.2
with:
file: assets/config_authentication_cloud.json
field: login.loginRequestURL
value: "https://${{ env.HOST_NAME }}.mauth.nevis.cloud/_app/auth/pwd"

- name: Update Configuration (hostname)
uses: jossef/action-set-json-field@v2.1
uses: jossef/action-set-json-field@v2.2
with:
file: assets/config_authentication_cloud.json
field: sdk.hostname
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
- name: Build And Distribute The iOS Example App
env:
PRIVATE_NATIVE_REPOSITORY: ${{ env.PRIVATE_NATIVE_IOS_REPOSITORY }}
uses: maierj/fastlane-action@v3.0.0
uses: maierj/fastlane-action@v3.1.0
with:
lane: 'develop'
subdirectory: 'ios'
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
- name: Build And Distribute The Android Example App
env:
PRIVATE_NATIVE_REPOSITORY: ${{ env.PRIVATE_NATIVE_ANDROID_REPOSITORY }}
uses: maierj/fastlane-action@v3.0.0
uses: maierj/fastlane-action@v3.1.0
with:
lane: 'develop'
subdirectory: 'android'
Expand All @@ -145,7 +145,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Create Tag
uses: ./.github/actions/create-tag
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
uses: ./.github/actions/setup-ios

- name: Build And Distribute The iOS Example App
uses: maierj/fastlane-action@v3.0.0
uses: maierj/fastlane-action@v3.1.0
with:
lane: 'main'
subdirectory: 'ios'
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
uses: ./.github/actions/setup-android

- name: Build And Distribute The Android Example App
uses: maierj/fastlane-action@v3.0.0
uses: maierj/fastlane-action@v3.1.0
with:
lane: 'main'
subdirectory: 'android'
Expand All @@ -140,7 +140,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Create Tag
uses: ./.github/actions/create-tag
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Build iOS Example App
env:
PRIVATE_NATIVE_REPOSITORY: ${{ env.PRIVATE_NATIVE_IOS_REPOSITORY }}
uses: maierj/fastlane-action@v3.0.0
uses: maierj/fastlane-action@v3.1.0
with:
lane: 'pr'
subdirectory: 'ios'
Expand All @@ -104,7 +104,7 @@ jobs:
- name: Build Android Example App
env:
PRIVATE_NATIVE_REPOSITORY: ${{ env.PRIVATE_NATIVE_ANDROID_REPOSITORY }}
uses: maierj/fastlane-action@v3.0.0
uses: maierj/fastlane-action@v3.1.0
with:
lane: 'pr'
subdirectory: 'android'
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
uses: ./.github/actions/setup-ios

- name: Build iOS Example App
uses: maierj/fastlane-action@v3.0.0
uses: maierj/fastlane-action@v3.1.0
with:
lane: 'pr'
subdirectory: 'ios'
Expand All @@ -90,7 +90,7 @@ jobs:
uses: ./.github/actions/setup-android

- name: Build Android Example App
uses: maierj/fastlane-action@v3.0.0
uses: maierj/fastlane-action@v3.1.0
with:
lane: 'pr'
subdirectory: 'android'

0 comments on commit 7d4275d

Please sign in to comment.