Skip to content

Commit

Permalink
Fix(Build): bump github action
Browse files Browse the repository at this point in the history
  • Loading branch information
stonebuzz committed Aug 29, 2024
1 parent 439aff3 commit cce4fd5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: set up JDK 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
Expand Down Expand Up @@ -43,13 +43,13 @@ jobs:
# Login to Google using Firebase Admin SDK Service Agent Key
- id: 'auth'
name: Login to Google Cloud
uses: 'google-github-actions/auth@v1'
uses: 'google-github-actions/auth@v2'
with:
credentials_json: ${{ secrets.GCP_CREDENTIALS }}

# Set up Cloud SDK
- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v1'
uses: 'google-github-actions/setup-gcloud@v2'

# Set Firebase Project ID
- name: Set current project
Expand All @@ -65,7 +65,7 @@ jobs:
##########################################
# Upload APK for Java version
- name: Upload APK Debug for Java
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Java-Debug-APK
path: ${{ env.module_app }}/build/outputs/apk/debug/${{ env.module_app }}-debug.apk
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

################################
# Update Version Code #
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: develop
fetch-depth: 0 #To Fetch All Tags and Branches
Expand Down

0 comments on commit cce4fd5

Please sign in to comment.