Skip to content

Commit

Permalink
Merge pull request #24 from nevissecurity/feature/NEVISACCESSAPP-6212-…
Browse files Browse the repository at this point in the history
…update-gh-actions

NEVISACCESSAPP-6212: update gh actions
  • Loading branch information
daniel-toth-leeder authored Oct 8, 2024
2 parents 669d953 + ddcf32d commit 71d59f6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
# Checkout the repository under $GITHUB_WORKSPACE
- name: Checkout Project
uses: actions/checkout@v3
uses: actions/checkout@v4

# Set Ruby version and Cache RubyGem dependencies
- name: Cache RubyGem Dependencies
Expand All @@ -32,7 +32,7 @@ jobs:

# Ensure correct Java version is installed
- name: Setup Java JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ env.JAVA_VERSION }}
Expand All @@ -52,7 +52,7 @@ jobs:
token: ${{secrets.GITHUB_TOKEN}}

# Setup Git user to make Fastlane capable to create Git tags
- uses: fregante/setup-git-user@v1
- uses: fregante/setup-git-user@v2

# Build the Android app
- name: Run Fastlane
Expand All @@ -64,7 +64,7 @@ jobs:
GITHUB_USERNAME: ${{ secrets.GH_USERNAME }}
GITHUB_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
uses: maierj/fastlane-action@v3.0.0
uses: maierj/fastlane-action@v3.1.0
with:
lane: 'main'
options: '{ "host_name": "${{ secrets.HOST_NAME }}",
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
# Checkout the repository under $GITHUB_WORKSPACE
- name: Checkout Project
uses: actions/checkout@v3
uses: actions/checkout@v4

# Set Ruby version and Cache RubyGem dependencies
- name: Cache RubyGem Dependencies
Expand All @@ -28,7 +28,7 @@ jobs:

# Ensure correct Java version is installed
- name: Setup Java JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ env.JAVA_VERSION }}
Expand All @@ -39,6 +39,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ secrets.GH_USERNAME }}
GITHUB_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
uses: maierj/fastlane-action@v3.0.0
uses: maierj/fastlane-action@v3.1.0
with:
lane: 'pr'

0 comments on commit 71d59f6

Please sign in to comment.