Skip to content

Commit 54cc715

Browse files
authored
Merge branch 'main' into dependabot/github_actions/codecov/codecov-action-5
2 parents 4756d32 + 3e16b01 commit 54cc715

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/pr-compliance-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup format tools
2929
run: |
3030
export KTLINT_VERSION=1.3.1
31-
mkdir ${HOME}/.local/bin
31+
mkdir -p ${HOME}/.local/bin
3232
echo "Installing ktlint $KTLINT_VERSION"
3333
curl -sSLO "https://github.com/pinterest/ktlint/releases/download/$KTLINT_VERSION/ktlint" && chmod a+x ktlint && mv ktlint ${HOME}/.local/bin/
3434
ktlint --version
@@ -46,4 +46,4 @@ jobs:
4646
ktlint '**/*.kt' '**/*.kts' '!**/build/generated*/**' |
4747
reviewdog -tee -reporter=github-pr-review -log-level=debug -efm="%f:%l:%c: %m" -name=ktlint
4848
env:
49-
REVIEWDOG_GITHUB_API_TOKEN: ${{ github.token }}
49+
REVIEWDOG_GITHUB_API_TOKEN: ${{ github.token }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
113113
- name: Create release
114114
id: create_release
115-
uses: ncipollo/release-action@v1.14.0
115+
uses: ncipollo/release-action@v1.15.0
116116
with:
117117
body: ${{ steps.build_changelog.outputs.changelog }}
118118
name: Release ${{ needs.version.outputs.RELEASE_VERSION }}

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
kotlin = "2.0.21"
33
kotest = "6.0.0.M1"
44
serialization = "1.7.3"
5-
graphql = "8.2.1"
5+
graphql = "8.3.0"
66

77
[plugins]
88
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
99
kotlin-mutliplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
1010
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
11-
kotlin-binaryCompatibility = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version = "0.16.3" }
11+
kotlin-binaryCompatibility = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version = "0.17.0" }
1212
kotest-multiplatform = { id = "io.kotest.multiplatform", version.ref = "kotest" }
1313
expediagroup-graphql = { id = "com.expediagroup.graphql", version.ref = "graphql" }
1414
publication = { id = "com.vanniktech.maven.publish", version = "0.30.0" }

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
22

33
plugins {
4-
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
4+
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
55
}
66

77
@Suppress("UnstableApiUsage")

0 commit comments

Comments
 (0)