Skip to content

Commit

Permalink
chore: Use Java 17 to compile the app
Browse files Browse the repository at this point in the history
  • Loading branch information
AChep committed Apr 25, 2024
1 parent 08e6cfc commit c9e995a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: "Setup JDK 11"
- name: "Set up JDK 17"
id: setup-java
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: "11"
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Copy google-services.json
run: |
cd app
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ jobs:
uses: metcalfc/changelog-generator@v3.0.0
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: "Setup JDK 11"
- name: "Set up JDK 17"
id: setup-java
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: "11"
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- id: vars
run: |
echo ::set-output name=tag::${GITHUB_REF:10}
Expand Down

0 comments on commit c9e995a

Please sign in to comment.