Skip to content

Commit

Permalink
Update dependencies and GitHub actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenzeck committed Nov 2, 2024
1 parent 5f00d6a commit d545de8
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
Expand All @@ -30,9 +30,9 @@ jobs:
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
Expand All @@ -47,14 +47,14 @@ jobs:
scripts: ${{ 'readium/navigator/src/main/assets/_scripts' }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
package_json_file: readium/navigator/src/main/assets/_scripts/package.json
run_install: false
- name: Setup cache
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
Expand Down
42 changes: 21 additions & 21 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
[versions]

kotlin = "1.9.24"
agp = "8.7.1"
agp = "8.7.2"
desugar_jdk_libs = "2.0.4"
gradle-maven-publish-plugin = "0.28.0"

androidx-activity = "1.9.2"
androidx-annotation = "1.8.2"
androidx-activity = "1.9.3"
androidx-annotation = "1.9.1"
androidx-appcompat = "1.7.0"
androidx-browser = "1.8.0"
androidx-cardview = "1.0.0"
# Make sure to align with the Kotlin version
# https://developer.android.com/jetpack/androidx/releases/compose-kotlin
androidx-compose-compiler = "1.5.14"
androidx-compose-animation = "1.7.3"
androidx-compose-foundation = "1.7.3"
androidx-compose-material = "1.7.3"
androidx-compose-material3 = "1.3.0"
androidx-compose-runtime = "1.7.3"
androidx-compose-ui = "1.7.3"
androidx-constraintlayout = "2.1.4"
androidx-core = "1.13.1"
androidx-compose-animation = "1.7.5"
androidx-compose-foundation = "1.7.5"
androidx-compose-material = "1.7.5"
androidx-compose-material3 = "1.3.1"
androidx-compose-runtime = "1.7.5"
androidx-compose-ui = "1.7.5"
androidx-constraintlayout = "2.2.0"
androidx-core = "1.15.0"
androidx-datastore = "1.1.1"
androidx-fragment-ktx = "1.8.4"
androidx-fragment-ktx = "1.8.5"
androidx-legacy = "1.0.0"
androidx-lifecycle = "2.8.6"
androidx-lifecycle = "2.8.7"
androidx-media = "1.7.0"
androidx-media2 = "1.3.0"
androidx-media3 = "1.4.1"
androidx-navigation = "2.8.2"
androidx-navigation = "2.8.3"
androidx-paging = "3.3.2"
androidx-recyclerview = "1.3.2"
androidx-room = "2.6.1"
androidx-viewpager2 = "1.1.0"
androidx-webkit = "1.12.1"

assertj = "3.25.3"
assertj = "3.26.3"

dokka = "1.9.20"

google-exoplayer = "2.19.1"
google-material = "1.12.0"

joda-time = "2.12.7"
jsoup = "1.17.2"
junit = "4.13.2"
joda-time = "2.13.0"
jsoup = "1.18.1"
junit = "5.11.3"

kotlinx-coroutines = "1.9.0"
kotlinx-coroutines-test = "1.9.0"
kotlinx-datetime = "0.6.0"
kotlinx-datetime = "0.6.1"
kotlinx-serialization-json = "1.6.3"

# Make sure to align with the Kotlin version.
# See https://github.com/google/ksp/releases
ksp = "1.9.24-1.0.20"

ktlint = "11.5.1"
ktlint = "12.1.1"

# We cannot upgrade to 1.9.0 as it conflicts with liblcp.
# See https://github.com/readium/kotlin-toolkit/issues/29
Expand All @@ -66,7 +66,7 @@ pdf-viewer = "2.8.2"
picasso = "2.8"
pspdfkit = "8.4.1"

robolectric = "4.12.2"
robolectric = "4.13"

timber = "5.0.1"

Expand Down

0 comments on commit d545de8

Please sign in to comment.