Skip to content

Commit

Permalink
chore(ci): Use JDK 21 (#2270)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile authored Dec 2, 2024
1 parent 12505f3 commit 53acfab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,10 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- name: set up JDK 17
uses: actions/setup-java@v3
- name: set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '17'
java-version: '21'
distribution: 'zulu'
- uses: actions/checkout@v3
- name: Restore Dependency Cache
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
with:
fetch-depth: 0
token: ${{ secrets.CAP_GH_RELEASE_TOKEN }}
- name: set up JDK 17
uses: actions/setup-java@v3
- name: set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '17'
java-version: '21'
distribution: 'zulu'
- name: Grant execute permission for publishing script
run: chmod +x ./scripts/publish-android.sh
Expand Down

0 comments on commit 53acfab

Please sign in to comment.