Skip to content

Commit 63f978b

Browse files
committed
build: Update to Java 11 and Mill 0.12.3
1 parent 40722ee commit 63f978b

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

.github/workflows/ci.yml

+18-18
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
matrix:
3131
os: [ubuntu-latest]
3232
scala: [2.12.20, 2.13.15]
33-
java: [temurin@8]
33+
java: [temurin@11]
3434
spark: [2.4.8, 3.0.3, 3.1.3, 3.2.4, 3.3.4, 3.4.4, 3.5.3]
3535
exclude:
3636
- spark: 2.4.8
@@ -46,21 +46,21 @@ jobs:
4646
with:
4747
fetch-depth: 0
4848

49-
- name: Download Java (temurin@8)
50-
id: download-java-temurin-8
51-
if: matrix.java == 'temurin@8'
49+
- name: Download Java (temurin@11)
50+
id: download-java-temurin-11
51+
if: matrix.java == 'temurin@11'
5252
uses: typelevel/download-java@v2
5353
with:
5454
distribution: temurin
55-
java-version: 8
55+
java-version: 11
5656

57-
- name: Setup Java (temurin@8)
58-
if: matrix.java == 'temurin@8'
57+
- name: Setup Java (temurin@11)
58+
if: matrix.java == 'temurin@11'
5959
uses: actions/setup-java@v4
6060
with:
6161
distribution: jdkfile
62-
java-version: 8
63-
jdkFile: ${{ steps.download-java-temurin-8.outputs.jdkFile }}
62+
java-version: 11
63+
jdkFile: ${{ steps.download-java-temurin-11.outputs.jdkFile }}
6464

6565
- name: Cache mill
6666
uses: actions/cache@v4
@@ -85,29 +85,29 @@ jobs:
8585
matrix:
8686
os: [ubuntu-latest]
8787
scala: [2.12.20]
88-
java: [temurin@8]
88+
java: [temurin@11]
8989
runs-on: ${{ matrix.os }}
9090
steps:
9191
- name: Checkout current branch (full)
9292
uses: actions/checkout@v4
9393
with:
9494
fetch-depth: 0
9595

96-
- name: Download Java (temurin@8)
97-
id: download-java-temurin-8
98-
if: matrix.java == 'temurin@8'
96+
- name: Download Java (temurin@11)
97+
id: download-java-temurin-11
98+
if: matrix.java == 'temurin@11'
9999
uses: typelevel/download-java@v2
100100
with:
101101
distribution: temurin
102-
java-version: 8
102+
java-version: 11
103103

104-
- name: Setup Java (temurin@8)
105-
if: matrix.java == 'temurin@8'
104+
- name: Setup Java (temurin@11)
105+
if: matrix.java == 'temurin@11'
106106
uses: actions/setup-java@v4
107107
with:
108108
distribution: jdkfile
109-
java-version: 8
110-
jdkFile: ${{ steps.download-java-temurin-8.outputs.jdkFile }}
109+
java-version: 11
110+
jdkFile: ${{ steps.download-java-temurin-11.outputs.jdkFile }}
111111

112112
- name: Cache mill
113113
uses: actions/cache@v4

.mill-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.12.1
1+
0.12.3

0 commit comments

Comments
 (0)