2 Commits

Author SHA1 Message Date
85f9dc7bf3 build(deps): bump org.jetbrains.kotlinx.kover from 0.7.5 to 0.8.3
Bumps [org.jetbrains.kotlinx.kover](https://github.com/Kotlin/kotlinx-kover) from 0.7.5 to 0.8.3.
- [Release notes](https://github.com/Kotlin/kotlinx-kover/releases)
- [Changelog](https://github.com/Kotlin/kotlinx-kover/blob/main/CHANGELOG.md)
- [Commits](https://github.com/Kotlin/kotlinx-kover/compare/v0.7.5...v0.8.3)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx.kover
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-22 07:08:09 +00:00
d6781dbc71 build(deps): bump gradle/gradle-build-action from 3.1.0 to 3.4.2 (#164)
Bumps [gradle/gradle-build-action](https://github.com/gradle/gradle-build-action) from 3.1.0 to 3.4.2.
- [Release notes](https://github.com/gradle/gradle-build-action/releases)
- [Commits](https://github.com/gradle/gradle-build-action/compare/v3.1.0...v3.4.2)

---
updated-dependencies:
- dependency-name: gradle/gradle-build-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-21 14:10:40 +08:00
6 changed files with 6 additions and 6 deletions

View File

@ -30,7 +30,7 @@ jobs:
- name: Grant execute permission for gradlew - name: Grant execute permission for gradlew
run: chmod +x gradlew run: chmod +x gradlew
- name: Build and run binary compatibility verification - name: Build and run binary compatibility verification
uses: gradle/gradle-build-action@v3.1.0 uses: gradle/gradle-build-action@v3.4.2
with: with:
gradle-version: 'wrapper' gradle-version: 'wrapper'
arguments: apiCheck arguments: apiCheck

View File

@ -29,7 +29,7 @@ jobs:
- name: Grant execute permission for gradlew - name: Grant execute permission for gradlew
run: chmod +x gradlew run: chmod +x gradlew
- name: Build and test - name: Build and test
uses: gradle/gradle-build-action@v3.1.0 uses: gradle/gradle-build-action@v3.4.2
with: with:
gradle-version: 'wrapper' gradle-version: 'wrapper'
arguments: test arguments: test

View File

@ -49,7 +49,7 @@ jobs:
- name: Grant execute permission for gradlew - name: Grant execute permission for gradlew
run: chmod +x gradlew run: chmod +x gradlew
- name: Build and test - name: Build and test
uses: gradle/gradle-build-action@v3.1.0 uses: gradle/gradle-build-action@v3.4.2
with: with:
gradle-version: 'wrapper' gradle-version: 'wrapper'
arguments: clean test assembleDist arguments: clean test assembleDist

View File

@ -25,7 +25,7 @@ jobs:
- name: Grant execute permission for gradlew - name: Grant execute permission for gradlew
run: chmod +x gradlew run: chmod +x gradlew
- name: Build and test - name: Build and test
uses: gradle/gradle-build-action@v3.1.0 uses: gradle/gradle-build-action@v3.4.2
with: with:
gradle-version: 'wrapper' gradle-version: 'wrapper'
arguments: clean test installDist arguments: clean test installDist

View File

@ -25,7 +25,7 @@ jobs:
- name: Grant execute permission for gradlew - name: Grant execute permission for gradlew
run: chmod +x gradlew run: chmod +x gradlew
- name: Build project and install Distribution package - name: Build project and install Distribution package
uses: gradle/gradle-build-action@v3.1.0 uses: gradle/gradle-build-action@v3.4.2
with: with:
gradle-version: 'wrapper' gradle-version: 'wrapper'
arguments: installDist arguments: installDist

View File

@ -1,6 +1,6 @@
plugins { plugins {
kotlin("jvm") version "1.9.23" apply false kotlin("jvm") version "1.9.23" apply false
id("org.jetbrains.kotlinx.kover") version "0.7.5" apply false id("org.jetbrains.kotlinx.kover") version "0.8.3" apply false
id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.14.0" apply false id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.14.0" apply false
} }