Skip to content

Commit 8bc9789

Browse files
committed
ci: test against latest Java versions
1 parent 8fb3692 commit 8bc9789

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
77

88
jobs:
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
java-version: [ 8, 11, 16 ]
15+
java-version: [ 8, 11, 17, 21, 24 ]
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v4

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ tasks.withType<DokkaTask> {
7373
dokkaSourceSets.named("main") {
7474
sourceLink {
7575
localDirectory.set(file("src/main/kotlin"))
76-
remoteUrl.set(uri("https://github.com/$githubRepository/blob/master/src/main/kotlin").toURL())
76+
remoteUrl.set(uri("https://github.com/$githubRepository/blob/main/src/main/kotlin").toURL())
7777
remoteLineSuffix.set("#L")
7878
}
7979
}

0 commit comments

Comments
 (0)