Skip to content

renovate: update major-risky-update #29

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/CheckStyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
distribution: 'adopt'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
uses: gradle/actions/setup-gradle@v4

- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v3
uses: gradle/actions/wrapper-validation@v4

- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Conveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
distribution: 'adopt'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
uses: gradle/actions/setup-gradle@v4

- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v3
uses: gradle/actions/wrapper-validation@v4

- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand All @@ -44,7 +44,7 @@ jobs:
tar xzf .keys.tar.gz
- name: Run Conveyor
uses: hydraulic-software/conveyor/actions/build@v14.2
uses: hydraulic-software/conveyor/actions/build@v18.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
APPLE_ISSUER_ID: ${{ secrets.APPLE_ISSUER_ID }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
distribution: 'adopt'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
uses: gradle/actions/setup-gradle@v4

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v3
uses: gradle/actions/wrapper-validation@v4

- name: Test
run: ./gradlew test --stacktrace
Expand Down
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import java.io.ByteArrayOutputStream

plugins {
val kotlinVersion = "1.9.23"
val kotlinVersion = "2.1.21"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("org.jetbrains.compose") version "1.6.2"
Expand All @@ -31,7 +31,7 @@ dependencies {

implementation(compose.materialIconsExtended)

val ktorVersion = "2.3.11"
val ktorVersion = "3.1.3"
implementation("io.ktor:ktor-client-core:$ktorVersion")
implementation("io.ktor:ktor-client-cio:$ktorVersion")
implementation("io.ktor:ktor-client-content-negotiation:$ktorVersion")
Expand All @@ -44,12 +44,12 @@ dependencies {
implementation("dev.icerock.moko:mvvm-core:$mokoMvvmVersion")
implementation("dev.icerock.moko:mvvm-compose:$mokoMvvmVersion")

implementation("io.insert-koin:koin-core:3.5.6")
implementation("io.insert-koin:koin-compose:1.1.5")
implementation("io.insert-koin:koin-core:4.0.4")
implementation("io.insert-koin:koin-compose:4.0.4")

val kermitVersion = "2.0.3"
implementation("co.touchlab:kermit:$kermitVersion")
implementation("io.sentry:sentry:7.9.0")
implementation("io.sentry:sentry:8.12.0")

implementation("org.apache.pdfbox:pdfbox:3.0.2")
runtimeOnly("org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.8.1") // Adds a Main Dispatcher for Desktop
Expand Down
Loading