From 18fe92cb11cd3f15440285a3b80f5a9579d0e458 Mon Sep 17 00:00:00 2001 From: hstyi Date: Fri, 21 Feb 2025 19:26:57 +0800 Subject: [PATCH] chore: upgrade dependency versions --- .github/workflows/windows-x86-64.yml | 13 +++++++------ THIRDPARTY | 10 +++++----- gradle/libs.versions.toml | 8 ++++---- 3 files changed, 16 insertions(+), 15 deletions(-) diff --git a/.github/workflows/windows-x86-64.yml b/.github/workflows/windows-x86-64.yml index bc6acf0..58d63d0 100644 --- a/.github/workflows/windows-x86-64.yml +++ b/.github/workflows/windows-x86-64.yml @@ -10,16 +10,17 @@ jobs: with: fetch-depth: 0 - - name: Installing Java - uses: actions/setup-java@v4 - with: - distribution: 'jetbrains' - java-version: '21' - - name: Install zip run: | $system32 = [System.Environment]::GetEnvironmentVariable("WINDIR") + "\System32" Invoke-WebRequest -Uri "http://stahlworks.com/dev/zip.exe" -OutFile "$system32\zip.exe" + Invoke-WebRequest -Uri "http://stahlworks.com/dev/unzip.exe" -OutFile "$system32\unzip.exe" + + - name: Installing Java + run: | + curl -s --output ${{ runner.temp }}\java_package.zip -L https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.6-windows-x64-b895.91.zip + unzip -q ${{ runner.temp }}\java_package.zip -d ${{ runner.temp }}\jbr + echo "JAVA_HOME=${{ runner.temp }}\jbr\jbrsdk-21.0.6-windows-x64-b895.91" >> $env:GITHUB_ENV - uses: actions/cache@v4 with: diff --git a/THIRDPARTY b/THIRDPARTY index 1f3741c..ebfb779 100644 --- a/THIRDPARTY +++ b/THIRDPARTY @@ -14,7 +14,7 @@ commonmark 0.24.0 BSD 2-Clause "Simplified" License https://github.com/commonmark/commonmark-java/blob/main/LICENSE.txt -commons-codec 1.17.1 +commons-codec 1.18.0 Apache License 2.0 https://github.com/apache/commons-codec/blob/master/LICENSE.txt @@ -34,7 +34,7 @@ commons-net 3.11.1 Apache License 2.0 https://github.com/apache/commons-net/blob/master/LICENSE.txt -commons-text 1.12.0 +commons-text 1.13.0 Apache License 2.0 https://github.com/apache/commons-text/blob/master/LICENSE.txt @@ -110,7 +110,7 @@ kotlin-logging 1.7.9 Apache License 2.0 https://github.com/oshai/kotlin-logging/blob/master/LICENSE -kotlin-stdlib 2.1.0 +kotlin-stdlib 2.1.10 Apache License 2.0 https://github.com/JetBrains/kotlin/blob/master/license/LICENSE.txt @@ -134,11 +134,11 @@ kotlinx-coroutines-swing 1.10.1 Apache License 2.0 https://www.apache.org/licenses/LICENSE-2.0 -kotlinx-serialization-core-jvm 1.7.3 +kotlinx-serialization-core-jvm 1.8.0 Apache License 2.0 https://github.com/Kotlin/kotlinx.serialization/blob/master/LICENSE.txt -kotlinx-serialization-json-jvm 1.7.3 +kotlinx-serialization-json-jvm 1.8.0 Apache License 2.0 https://github.com/Kotlin/kotlinx.serialization/blob/master/LICENSE.txt diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 88033f2..3db756f 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,16 +1,16 @@ [versions] -kotlin = "2.1.0" +kotlin = "2.1.10" slf4j = "2.0.16" pty4j = "0.13.2" tinylog = "2.7.0" kotlinx-coroutines = "1.10.1" flatlaf = "3.5.4" trove4j = "1.0.20200330" -kotlinx-serialization-json = "1.7.3" -commons-codec = "1.17.1" +kotlinx-serialization-json = "1.8.0" +commons-codec = "1.18.0" commons-lang3 = "3.17.0" commons-net = "3.11.1" -commons-text = "1.12.0" +commons-text = "1.13.0" commons-compress = "1.27.1" koin-bom = "4.0.0" swingx = "1.6.5-1"