Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 18, 2024
1 parent f55e2c6 commit b7af8d1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:

- name: Extract metadata (tags, labels) for api
id: meta_api
uses: docker/metadata-action@b53be03109c4ef6f6cc7aa545b84b17a7fe51c1e
uses: docker/metadata-action@906ecf0fc0a80f9110f79d9e6c04b1080f4a2621
with:
images: xbank/bus_tracker_api

- name: Build and push Docker image for api
uses: docker/build-push-action@0259cb088b9283926c6ffe4374b2a06a25c8c131
uses: docker/build-push-action@7e094594beda23fc8f21fa31049f4b203e51096b
with:
context: .
file: Dockerfile-api
Expand All @@ -43,12 +43,12 @@ jobs:

- name: Extract metadata (tags, labels) for loader
id: meta_loader
uses: docker/metadata-action@b53be03109c4ef6f6cc7aa545b84b17a7fe51c1e
uses: docker/metadata-action@906ecf0fc0a80f9110f79d9e6c04b1080f4a2621
with:
images: xbank/bus_tracker_loader

- name: Build and push Docker image for loader
uses: docker/build-push-action@0259cb088b9283926c6ffe4374b2a06a25c8c131
uses: docker/build-push-action@7e094594beda23fc8f21fa31049f4b203e51096b
with:
context: .
file: Dockerfile-loader
Expand Down
6 changes: 3 additions & 3 deletions api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ dependencies {
implementation("io.github.pdvrieze.xmlutil:core:0.90.3")
implementation("io.github.pdvrieze.xmlutil:serialization:0.90.3")
implementation("io.ktor:ktor-server-caching-headers:$ktor_version")// https://mvnrepository.com/artifact/com.google.firebase/firebase-messaging
implementation("com.google.firebase:firebase-admin:9.4.1")
implementation("com.google.auth:google-auth-library-oauth2-http:1.30.0")
implementation("com.google.firebase:firebase-admin:9.4.2")
implementation("com.google.auth:google-auth-library-oauth2-http:1.30.1")
// https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-guava
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-guava:1.9.0")
implementation("dev.inmo:krontab:2.6.1")
// https://mvnrepository.com/artifact/org.jsoup/jsoup
implementation("org.jsoup:jsoup:1.18.1")
implementation("org.jsoup:jsoup:1.18.3")
implementation(project(":crtm"))
implementation(project(":common"))
}
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
kotlin.code.style=official
ktor_version=3.0.1
kotlin_version=2.0.21
ktor_version=3.0.2
kotlin_version=2.1.0
arrow_version=1.2.4
okhttp_version=4.12.0
okhttpcoroutines_version=1.0
mongo_version=5.2.1
simplejson_version=3.0.3
kover_version=0.8.3
logback_classic_version=1.5.12
kover_version=0.9.0
logback_classic_version=1.5.13
8 changes: 4 additions & 4 deletions tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ val ktor_version: String by project
dependencies {
implementation("io.github.xbaank:simpleJson-core:$simplejson_version")
implementation("io.arrow-kt:arrow-core:$arrow_version")
implementation("com.google.firebase:firebase-admin:9.4.1")
implementation("com.google.firebase:firebase-admin:9.4.2")
implementation(project(":api"))
implementation(project(":common"))
implementation(project(":loader"))
testImplementation(kotlin("test"))
testImplementation("org.amshove.kluent:kluent:1.73")
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.3")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.3")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.3")
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.4")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.4")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.4")
testImplementation("org.testcontainers:mongodb:1.20.4")
testImplementation("io.ktor:ktor-server-test-host:$ktor_version")
testImplementation("io.mockk:mockk:1.13.13")
Expand Down

0 comments on commit b7af8d1

Please sign in to comment.