Skip to content

Commit

Permalink
chore: use JDK 17 for CI builds as required for RN 0.73 (#1957)
Browse files Browse the repository at this point in the history
## Description

Setting version of JDK to 17 for CI builds as it is required by 0.73 to
run.

## Test code and steps to reproduce

CI passing should be enough

## Checklist

- [ ] Ensured that CI passes
  • Loading branch information
kkafar authored Nov 6, 2023
1 parent 7994eda commit 4224c7c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/android-build-test-fabric.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,14 @@ jobs:
group: android-fabric-${{ github.ref }}
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
cache: 'gradle'
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/android-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,14 @@ jobs:
group: android-${{ github.ref }}
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
cache: 'gradle'
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
Expand Down

0 comments on commit 4224c7c

Please sign in to comment.