Skip to content

Commit

Permalink
Added Java 17 setup
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkedzierski committed Jul 23, 2024
1 parent c526114 commit aa70b8d
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/build-release-without-signing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,15 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-
- name: Cache Ruby dependencies
uses: actions/cache@v3
with:
path: |
vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Install dependencies
run: yarn

Expand All @@ -64,14 +73,11 @@ jobs:
ruby-version: 3.3.4
bundler: 2.5.11

- name: Cache Ruby dependencies
uses: actions/cache@v3
- name: Setup Java environment
uses: actions/setup-java@v3
with:
path: |
vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
distribution: 'zulu'
java-version: '17'

- name: Install dependencies
run: |
Expand Down

0 comments on commit aa70b8d

Please sign in to comment.