Skip to content

Commit c4c49db

Browse files
committed
Merge branch 'main' into MultiProvider-Impl
2 parents e71d448 + a585962 commit c4c49db

File tree

13 files changed

+354
-245
lines changed

13 files changed

+354
-245
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
# For browser tests
19-
- uses: browser-actions/setup-chrome@v1
19+
- uses: browser-actions/setup-chrome@v2
2020

2121
- name: Run checks
2222
run: ./gradlew check --no-daemon --stacktrace

.github/workflows/lint-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Validate PR title
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: amannn/action-semantic-pull-request@v5
15+
- uses: amannn/action-semantic-pull-request@v6
1616
id: lint_pr_title
1717
env:
1818
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/manual-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
ref: ${{ github.event.inputs.branch }}
2727

.github/workflows/release_please.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
restore-keys: |
4444
${{ runner.os }}-gradle-
4545
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747

4848
- name: Configure GPG Key
4949
run: |
@@ -63,7 +63,7 @@ jobs:
6363
GPG_SIGNING_KEY_PASSWORD: ${{ secrets.GPG_SIGNING_KEY_PASSWORD }}
6464

6565
- name: Set up JDK 17
66-
uses: actions/setup-java@v3
66+
uses: actions/setup-java@v5
6767
with:
6868
java-version: 17
6969
distribution: 'zulu'

build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id("com.android.library").version("8.10.0").apply(false)
4-
id("com.android.application").version("8.10.0").apply(false)
5-
id("org.jetbrains.kotlin.multiplatform").version("2.1.21").apply(false)
6-
id("org.jetbrains.kotlin.plugin.compose").version("2.1.0").apply(false)
3+
id("com.android.library").version("8.12.2").apply(false)
4+
id("com.android.application").version("8.12.2").apply(false)
5+
id("org.jetbrains.kotlin.multiplatform").version("2.2.10").apply(false)
6+
id("org.jetbrains.kotlin.plugin.compose").version("2.2.10").apply(false)
77
id("org.jetbrains.dokka").version("2.0.0").apply(false)
88
id("org.jlleitschuh.gradle.ktlint").version("11.6.1").apply(true)
99
id("io.github.gradle-nexus.publish-plugin").version("2.0.0").apply(true)
10-
id("org.jetbrains.kotlinx.binary-compatibility-validator").version("0.17.0").apply(false)
10+
id("org.jetbrains.kotlinx.binary-compatibility-validator").version("0.18.1").apply(false)
1111
id("com.vanniktech.maven.publish").version("0.34.0").apply(false)
1212
}
1313
allprojects {

gradle/wrapper/gradle-wrapper.jar

1.65 KB
Binary file not shown.

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.3-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

gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)