Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
joelkanyi committed May 31, 2024
1 parent b913f08 commit 3cacfed
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: JDK setup
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17
distribution: corretto

- name: Cache konan directory
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.konan
key: ${{ runner.os }}-konan-${{ hashFiles('*.gradle.kts', 'buildSrc/*') }}
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,6 @@ Preview.html
screenshots/**/*.png
test_output

*.env*
*.env*

.kotlin
11 changes: 6 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[versions]
kotlin = "1.9.23"
agp = "8.3.2"
core-ktx = "1.13.0"
compose = "1.6.2"
kotlin = "1.9.24"
agp = "8.4.1"
core-ktx = "1.13.1"
compose = "1.6.10"
compose-activity = "1.9.0"
spotless = "6.25.0"
kotlin-compatibility = "0.14.0"
dokka = "1.9.20"
gradleMavenPublish = "0.28.0"
nmcp = "0.0.7"

[libraries]
androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "core-ktx" }
Expand All @@ -25,4 +26,4 @@ jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
kotlin-compatibility = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version.ref = "kotlin-compatibility" }
dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" }
gradleMavenPublish = { id = "com.vanniktech.maven.publish", version.ref = "gradleMavenPublish" }
nmcp = { id = "com.gradleup.nmcp", version = "0.0.4" }
nmcp = { id = "com.gradleup.nmcp", version.ref = "nmcp" }
2 changes: 1 addition & 1 deletion sample/android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ android {
}

composeOptions {
kotlinCompilerExtensionVersion = "1.5.11"
kotlinCompilerExtensionVersion = "1.5.14"
}
packaging {
resources {
Expand Down

0 comments on commit 3cacfed

Please sign in to comment.