Skip to content

Commit

Permalink
Use temurin distribution of OpenJDK
Browse files Browse the repository at this point in the history
  • Loading branch information
tdcmeehan committed Apr 9, 2024
1 parent 477f720 commit d38295a
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ jobs:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 8
- name: Install LaTeX dependencies
run: |
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/hive-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ jobs:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 8
- name: Cache local Maven repository
id: cache-maven
Expand Down Expand Up @@ -93,8 +94,9 @@ jobs:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 8
- name: Cache local Maven repository
id: cache-maven
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/kudu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ jobs:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 8
- name: Cache local Maven repository
id: cache-maven
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/maven-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ jobs:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 8
- name: Cache local Maven repository
id: cache-maven
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/product-tests-basic-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ jobs:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 8
- name: Cache local Maven repository
id: cache-maven
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/product-tests-specific-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ jobs:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 8
- name: Cache local Maven repository
id: cache-maven
Expand Down Expand Up @@ -96,8 +97,9 @@ jobs:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 8
- name: Cache local Maven repository
id: cache-maven
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/singlestore-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,9 @@ jobs:
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
echo "=== AFTER ==="
df -h
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 8
- name: Cache local Maven repository
id: cache-maven
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/spark-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@ jobs:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 8
- name: Cache local Maven repository
id: cache-maven
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-other-modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@ jobs:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 8
- name: Cache local Maven repository
id: cache-maven
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,10 @@ jobs:
if: needs.changes.outputs.codechange == 'true'
with:
show-progress: false
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
if: needs.changes.outputs.codechange == 'true'
with:
distribution: 'temurin'
java-version: 8
- name: Cache local Maven repository
if: needs.changes.outputs.codechange == 'true'
Expand Down

0 comments on commit d38295a

Please sign in to comment.