File tree 6 files changed +7
-6
lines changed
6 files changed +7
-6
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.4.20 /kotlin-compiler-1.4.20 .zip
23
+ curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.4.31 /kotlin-compiler-1.4.31 .zip
24
24
25
25
if [[ "$OSTYPE" != "darwin"* ]]
26
26
then
Original file line number Diff line number Diff line change 23
23
- Road to 1.0 - Migrate from java.util.Date to kotlinx.datetime [ @gianluz ] - [ #147 ] ( https://github.com/danger/kotlin/pull/147 )
24
24
- Fix typo in Github Milestone serialization [ @doodeec ] - [ #151 ] ( https://github.com/danger/kotlin/pull/151 )
25
25
- Use fixed commit of danger/kotlin repository in install.sh script [ @davidbilik ] - [ #152 ] ( https://github.com/danger/kotlin/pull/152 )
26
+ - Update Kotlin to 1.4.31 [ @gianluz ] - [ #160 ] ( https://github.com/danger/kotlin/pull/160 )
26
27
27
28
# 0.7.1
28
29
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - && \
15
15
# Install danger-kotlin globally
16
16
COPY . /usr/local/_danger-kotlin
17
17
RUN cd /usr/lib && \
18
- wget -q https://github.com/JetBrains/kotlin/releases/download/v1.4.20 /kotlin-compiler-1.4.20 .zip && \
18
+ wget -q https://github.com/JetBrains/kotlin/releases/download/v1.4.31 /kotlin-compiler-1.4.31 .zip && \
19
19
unzip kotlin-compiler-*.zip && \
20
20
rm kotlin-compiler-*.zip && \
21
21
cd /usr/local/_danger-kotlin && \
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.4.20 '
23
+ project. ext. versionKotlin = ' 1.4.31 '
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.4.20
1
+ kotlinVersion =1.4.31
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 @@ -22,8 +22,8 @@ if [[ -n "$sudo" && "$OSTYPE" != "darwin"* ]]; then
22
22
fi
23
23
24
24
if ! [[ -x " $( command -v kotlinc) " ]]; then
25
- echo " Installing kotlin compiler 1.4.20 "
26
- curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.4.20 /kotlin-compiler-1.4.20 .zip
25
+ echo " Installing kotlin compiler 1.4.31 "
26
+ curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.4.31 /kotlin-compiler-1.4.31 .zip
27
27
unzip -d /usr/local/ kotlin-compiler.zip
28
28
echo ' export PATH=/usr/local/kotlinc/bin:$PATH' >> ~ /.bash_profile
29
29
rm -rf kotlin-compiler.zip
You can’t perform that action at this time.
0 commit comments