Skip to content

Commit 10e94a5

Browse files
Update Update other dependencies
1 parent edf0929 commit 10e94a5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Setup secrets
2020
run: |
2121
echo marvel_public_api_key=${{ secrets.MARVEL_PUBLIC_API_KEY }} >> gradle.properties
2222
echo marvel_private_api_key=${{ secrets.MARVEL_PRIVATE_API_KEY }} >> gradle.properties
2323
2424
- name: Setup Java
25-
uses: actions/setup-java@v4
25+
uses: actions/setup-java@v5
2626
with:
2727
distribution: 'temurin'
2828
java-version: '21'
@@ -45,7 +45,7 @@ jobs:
4545
timeout-minutes: 30
4646
steps:
4747
- name: Checkout
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v5
4949

5050
- name: Enable KVM
5151
run: |
@@ -54,7 +54,7 @@ jobs:
5454
sudo udevadm trigger --name-match=kvm
5555
5656
- name: Setup Java
57-
uses: actions/setup-java@v4
57+
uses: actions/setup-java@v5
5858
with:
5959
distribution: 'temurin'
6060
java-version: '21'

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,15 +99,15 @@ dependencies {
9999
implementation "io.coil-kt:coil-compose:$coil_version"
100100

101101
def retrofit = "3.0.0"
102-
def okhttp = "4.12.0"
102+
def okhttp = "5.1.0"
103103
implementation "com.squareup.retrofit2:retrofit:$retrofit"
104104
implementation "com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:1.0.0"
105105
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0"
106106
implementation "com.squareup.okhttp3:logging-interceptor:$okhttp"
107107

108108
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose"
109109

110-
def kotest = "5.9.1"
110+
def kotest = "6.0.3"
111111
testImplementation "io.kotest:kotest-runner-junit5-jvm:$kotest"
112112
testImplementation "io.kotest:kotest-assertions-core-jvm:$kotest"
113113
testImplementation 'app.cash.turbine:turbine:1.2.1'

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)