File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed
danger-kotlin-sample-plugin Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 2020
2121 - name : Install Kotlin
2222 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
2424
2525 if [[ "$OSTYPE" != "darwin"* ]]
2626 then
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ LABEL "com.github.actions.description"="Runs Kotlin Dangerfiles"
77LABEL "com.github.actions.icon" ="zap"
88LABEL "com.github.actions.color" ="blue"
99
10- ARG KOTLINC_VERSION="1.7.0 "
10+ ARG KOTLINC_VERSION="1.7.22 "
1111ARG DANGER_KOTLIN_VERSION="1.3.0"
1212
1313# Install dependencies
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ buildscript {
99}
1010
1111plugins {
12- id ' org.jetbrains.kotlin.jvm' version ' 1.7.0 '
12+ id ' org.jetbrains.kotlin.jvm' version ' 1.7.22 '
1313}
1414
1515apply 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'
2020project. ext. artifactIdOkio = ' okio'
2121
2222// Kotlin
23- project. ext. versionKotlin = ' 1.7.0 '
23+ project. ext. versionKotlin = ' 1.7.22 '
2424project. ext. groupIdKotlin = ' org.jetbrains.kotlin'
2525project. ext. groupIdKotlinx = ' org.jetbrains.kotlinx'
2626project. 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
22kotlin.code.style =official
33systemProp.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
3131fi
3232
3333if ! [[ -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
3636 unzip -d /usr/local/ kotlin-compiler.zip
3737 echo ' export PATH=/usr/local/kotlinc/bin:$PATH' >> ~ /.bash_profile
3838 rm -rf kotlin-compiler.zip
You can’t perform that action at this time.
0 commit comments