File tree 6 files changed +7
-7
lines changed
danger-kotlin-sample-plugin
6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 20
20
21
21
- name : Install Kotlin
22
22
run : |
23
- curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.7.0 /kotlin-compiler-1.7.0 .zip
23
+ curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.7.22 /kotlin-compiler-1.7.22 .zip
24
24
25
25
if [[ "$OSTYPE" != "darwin"* ]]
26
26
then
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ LABEL "com.github.actions.description"="Runs Kotlin Dangerfiles"
7
7
LABEL "com.github.actions.icon" ="zap"
8
8
LABEL "com.github.actions.color" ="blue"
9
9
10
- ARG KOTLINC_VERSION="1.7.0 "
10
+ ARG KOTLINC_VERSION="1.7.22 "
11
11
ARG DANGER_KOTLIN_VERSION="1.3.0"
12
12
13
13
# Install dependencies
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ buildscript {
9
9
}
10
10
11
11
plugins {
12
- id ' org.jetbrains.kotlin.jvm' version ' 1.7.0 '
12
+ id ' org.jetbrains.kotlin.jvm' version ' 1.7.22 '
13
13
}
14
14
15
15
apply plugin : ' danger-kotlin-plugin-installer'
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ project.ext.groupIdOkio = 'com.squareup.okio'
20
20
project. ext. artifactIdOkio = ' okio'
21
21
22
22
// Kotlin
23
- project. ext. versionKotlin = ' 1.7.0 '
23
+ project. ext. versionKotlin = ' 1.7.22 '
24
24
project. ext. groupIdKotlin = ' org.jetbrains.kotlin'
25
25
project. ext. groupIdKotlinx = ' org.jetbrains.kotlinx'
26
26
project. ext. artifactIdKotlinMain = ' kotlin-main-kts'
Original file line number Diff line number Diff line change 1
- kotlinVersion =1.7.0
1
+ kotlinVersion =1.7.22
2
2
kotlin.code.style =official
3
3
systemProp.org.gradle.internal.publish.checksums.insecure =true
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ if [[ -n "$sudo" && "$OSTYPE" != "darwin"* ]]; then
31
31
fi
32
32
33
33
if ! [[ -x " $( command -v kotlinc) " ]]; then
34
- echo " Installing kotlin compiler 1.7.0 "
35
- curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.7.0 /kotlin-compiler-1.7.0 .zip
34
+ echo " Installing kotlin compiler 1.7.22 "
35
+ curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.7.22 /kotlin-compiler-1.7.22 .zip
36
36
unzip -d /usr/local/ kotlin-compiler.zip
37
37
echo ' export PATH=/usr/local/kotlinc/bin:$PATH' >> ~ /.bash_profile
38
38
rm -rf kotlin-compiler.zip
You can’t perform that action at this time.
0 commit comments