Skip to content

Commit 61d5d6b

Browse files
committed
Update github actions
1 parent 6536214 commit 61d5d6b

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
timeout-minutes: 40
1515
steps:
1616
- name: Checkout sources
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Setup Java
19-
uses: actions/setup-java@v4
19+
uses: actions/setup-java@v5
2020
with:
2121
distribution: 'temurin'
22-
java-version: 17
22+
java-version: 21
2323
- name: Setup Gradle
2424
uses: gradle/actions/setup-gradle@v4
2525
- name: Build with Gradle

gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ org.gradle.parallel=true
44
org.gradle.jvmargs=-Xmx4096m
55

66
kotlin.mpp.stability.nowarn=true
7-
kotlin.native.ignoreDisabledTargets=true
87
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
98
kotlin.native.enableKlibsCrossCompilation=true
109

settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ pluginManagement {
77
val toolsVersion: String by extra
88

99
repositories {
10-
mavenLocal()
1110
maven("https://repo.kotlin.link")
1211
mavenCentral()
1312
gradlePluginPortal()
13+
mavenLocal()
1414
}
1515

1616
plugins {
@@ -26,9 +26,9 @@ dependencyResolutionManagement {
2626
val toolsVersion: String by extra
2727

2828
repositories {
29-
mavenLocal()
3029
maven("https://repo.kotlin.link")
3130
mavenCentral()
31+
mavenLocal()
3232
}
3333

3434
versionCatalogs {

0 commit comments

Comments
 (0)