From 7c9890da578d34453b5397c3c4acaa84ec5312a5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 22:07:06 +0000 Subject: [PATCH] renovate: update minor-updates --- .github/workflows/Conveyor.yml | 2 +- build.gradle.kts | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/Conveyor.yml b/.github/workflows/Conveyor.yml index 01e4b1f..2eba5cc 100644 --- a/.github/workflows/Conveyor.yml +++ b/.github/workflows/Conveyor.yml @@ -44,7 +44,7 @@ jobs: tar xzf .keys.tar.gz - name: Run Conveyor - uses: hydraulic-software/conveyor/actions/build@v13.0 + uses: hydraulic-software/conveyor/actions/build@v13.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} APPLE_ISSUER_ID: ${{ secrets.APPLE_ISSUER_ID }} diff --git a/build.gradle.kts b/build.gradle.kts index 940fc06..ec6f5c1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,11 +4,11 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile import java.io.ByteArrayOutputStream plugins { - val kotlinVersion = "1.9.21" + val kotlinVersion = "1.9.22" kotlin("jvm") version kotlinVersion kotlin("plugin.serialization") version kotlinVersion - id("org.jetbrains.compose") version "1.5.11" - id("io.gitlab.arturbosch.detekt") version "1.23.4" + id("org.jetbrains.compose") version "1.5.12" + id("io.gitlab.arturbosch.detekt") version "1.23.5" id("dev.hydraulic.conveyor") version "1.6" } @@ -31,7 +31,7 @@ dependencies { implementation(compose.materialIconsExtended) - val ktorVersion = "2.3.7" + val ktorVersion = "2.3.8" implementation("io.ktor:ktor-client-core:$ktorVersion") implementation("io.ktor:ktor-client-cio:$ktorVersion") implementation("io.ktor:ktor-client-content-negotiation:$ktorVersion") @@ -49,7 +49,7 @@ dependencies { val kermitVersion = "2.0.2" implementation("co.touchlab:kermit:$kermitVersion") - implementation("io.sentry:sentry:7.2.0") + implementation("io.sentry:sentry:7.3.0") implementation("org.apache.pdfbox:pdfbox:3.0.1") runtimeOnly("org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.7.3") // Adds a Main Dispatcher for Desktop @@ -60,7 +60,7 @@ dependencies { testImplementation(kotlin("test")) testImplementation("co.touchlab:kermit-test:$kermitVersion") - detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.4") + detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.5") } tasks.withType {