Skip to content

Commit

Permalink
Upgrade JDK to 11 in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
chetangudisagar committed May 3, 2024
1 parent 880e670 commit c1b7c67
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/publish-universe-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
distribution: 'corretto'
java-version: '11'
check-latest: true
cache-dependency-path: '**/pom.xml'

- name: Cache local Gradle repository
uses: actions/cache@v2
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/pull_request_benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,12 @@ jobs:
- uses: actions/checkout@v2

- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 1.8
distribution: 'corretto'
java-version: '11'
check-latest: true
cache-dependency-path: '**/pom.xml'

- name: Cache local Gradle repository
uses: actions/cache@v2
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pull_request_universe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
distribution: 'corretto'
java-version: '11'
check-latest: true
cache-dependency-path: '**/pom.xml'

- name: Cache local Gradle repository
uses: actions/cache@v2
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/run_benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
distribution: 'corretto'
java-version: '11'
check-latest: true
cache-dependency-path: '**/pom.xml'

- name: Cache local Gradle repository
uses: actions/cache@v2
Expand Down

0 comments on commit c1b7c67

Please sign in to comment.