Commit 3996cca 1 parent 2ae1a7a commit 3996cca Copy full SHA for 3996cca
File tree 3 files changed +14
-9
lines changed
3 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -15,24 +15,24 @@ jobs:
15
15
defaults :
16
16
run :
17
17
working-directory : ./backend
18
- runs-on : ubuntu-24.04
18
+ runs-on : ubuntu-latest
19
19
steps :
20
- - uses : actions/checkout@v3
20
+ - uses : actions/checkout@v4
21
21
22
22
- name : Lint OpenAPI Specifications
23
23
uses : stoplightio/spectral-action@latest
24
24
with :
25
25
file_glob : ' backend/*/src/main/resources/static/openapi/api.yml'
26
26
spectral_ruleset : backend/config/.spectral.yaml
27
27
28
- - name : Setup up JDK 20
29
- uses : actions/setup-java@v3
28
+ - name : Setup up JDK 22
29
+ uses : actions/setup-java@v4
30
30
with :
31
- java-version : ' 20 '
31
+ java-version : ' 22 '
32
32
distribution : ' temurin'
33
33
34
34
- name : Setup Gradle
35
- uses : gradle/actions/setup-gradle@v3
35
+ uses : gradle/actions/setup-gradle@v4
36
36
37
37
- name : Generate Key Pair
38
38
run : bash config/crypto/keys.bash generate test
Original file line number Diff line number Diff line change @@ -8,11 +8,16 @@ repositories {
8
8
gradlePluginPortal()
9
9
}
10
10
11
+ kotlin {
12
+ jvmToolchain(22 )
13
+ }
14
+
11
15
dependencies {
16
+ val kotlinVersion = " 2.0.10"
12
17
val jooqVersion = " 3.19.15"
13
18
14
- implementation(" org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlin.coreLibrariesVersion} " )
15
- implementation(" org.jetbrains.kotlin:kotlin-allopen:${kotlin.coreLibrariesVersion} " )
19
+ implementation(" org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion " )
20
+ implementation(" org.jetbrains.kotlin:kotlin-allopen:$kotlinVersion " )
16
21
17
22
implementation(" io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.7" )
18
23
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ repositories {
10
10
}
11
11
12
12
kotlin {
13
- jvmToolchain(20 )
13
+ jvmToolchain(22 )
14
14
}
You can’t perform that action at this time.
0 commit comments