Skip to content

Commit c46e258

Browse files
authored
Upgrading deps. (#374)
* Upgrading deps. * Removing pointless slow path check for CI.
1 parent fad800a commit c46e258

3 files changed

Lines changed: 5 additions & 14 deletions

File tree

.woodpecker.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
variables:
2-
- &slow_check_paths
3-
- path:
4-
- "**/*.kt"
5-
- "**/*.gradle"
6-
- ".woodpecker.yml"
7-
81
steps:
92
prettier_markdown_check:
103
image: tmknom/prettier
@@ -16,7 +9,6 @@ steps:
169
commands:
1710
- sudo chown -R circleci:circleci .
1811
- ./gradlew lintKotlin
19-
when: *slow_check_paths
2012
environment:
2113
GRADLE_USER_HOME: ".gradle"
2214

@@ -25,7 +17,6 @@ steps:
2517
commands:
2618
- sudo chown -R circleci:circleci .
2719
- ./gradlew assembleDebug
28-
when: *slow_check_paths
2920
environment:
3021
GRADLE_USER_HOME: ".gradle"
3122

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ android {
6363
compose true
6464
}
6565
composeOptions {
66-
kotlinCompilerExtensionVersion = "1.5.1"
66+
kotlinCompilerExtensionVersion = "1.5.3"
6767
}
6868
namespace 'com.dessalines.thumbkey'
6969
}
7070

7171
dependencies {
72-
implementation "androidx.navigation:navigation-compose:2.7.0"
72+
implementation "androidx.navigation:navigation-compose:2.7.1"
7373
implementation 'com.github.alorma:compose-settings-ui-m3:0.27.0'
7474

7575
// To use Kotlin annotation processing tool

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ buildscript {
99
plugins {
1010
id 'com.android.application' version '8.1.1' apply false
1111
id 'com.android.library' version '8.1.1' apply false
12-
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
13-
id 'org.jmailen.kotlinter' version "3.15.0" apply false
14-
id 'com.google.devtools.ksp' version "1.9.0-1.0.12" apply false
12+
id 'org.jetbrains.kotlin.android' version '1.9.10' apply false
13+
id 'org.jmailen.kotlinter' version "3.16.0" apply false
14+
id 'com.google.devtools.ksp' version "1.9.10-1.0.13" apply false
1515
}
1616

1717
subprojects {

0 commit comments

Comments
 (0)