Skip to content

Commit

Permalink
CI: Update workflow 'Build'
Browse files Browse the repository at this point in the history
Dependencies:

- actions/checkout@v3 => v4
- actions/setup-java@v3 => v4
- actions/upload-artifact@3 => v4

Bug: CCIP-App#91
Bug: CCIP-App#92
Change-Id: I290d2b19dc198fc840ae7b246325de9a45f88c39
  • Loading branch information
winstonsung committed May 4, 2024
1 parent 4ee77d4 commit 232f318
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: 17
Expand All @@ -19,7 +19,7 @@ jobs:
run: ./gradlew assembleDebug

- name: Upload APK
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: app_debug
path: app/build/outputs/apk/debug/app-debug.apk

0 comments on commit 232f318

Please sign in to comment.