Skip to content

Commit

Permalink
Merge pull request #532 from SpineEventEngine/bump-wrapper-validation…
Browse files Browse the repository at this point in the history
…-action

Use  `wrapper-validation@v4`
  • Loading branch information
alexander-yevsyukov authored Dec 9, 2024
2 parents 6f0e142 + 2b035ee commit 86f3cac
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
uses: actions/checkout@v4

- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
uses: gradle/actions/wrapper-validation@v4
3 changes: 2 additions & 1 deletion buildSrc/src/main/kotlin/io/spine/dependency/lib/KotlinX.kt
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ object KotlinX {
object Coroutines {

// https://github.com/Kotlin/kotlinx.coroutines
const val version = "1.7.3"
const val version = "1.9.0"
const val core = "$group:kotlinx-coroutines-core:$version"
const val jdk8 = "$group:kotlinx-coroutines-jdk8:$version"
const val test = "$group:kotlinx-coroutines-test:$version"
}
}
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/io/spine/dependency/local/Base.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ package io.spine.dependency.local
*/
@Suppress("ConstPropertyName")
object Base {
const val version = "2.0.0-SNAPSHOT.220"
const val versionForBuildScript = "2.0.0-SNAPSHOT.220"
const val version = "2.0.0-SNAPSHOT.224"
const val versionForBuildScript = "2.0.0-SNAPSHOT.224"
const val group = Spine.group
const val artifact = "spine-base"
const val lib = "$group:$artifact:$version"
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/io/spine/dependency/local/McJava.kt
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ object McJava {
/**
* The version used to in the build classpath.
*/
const val dogfoodingVersion = "2.0.0-SNAPSHOT.258"
const val dogfoodingVersion = "2.0.0-SNAPSHOT.259"

/**
* The version to be used for integration tests.
*/
const val version = "2.0.0-SNAPSHOT.258"
const val version = "2.0.0-SNAPSHOT.259"

/**
* The ID of the Gradle plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ object ProtoData {
* The version of ProtoData dependencies.
*/
val version: String
private const val fallbackVersion = "0.69.5"
private const val fallbackVersion = "0.70.1"

/**
* The distinct version of ProtoData used by other build tools.
Expand All @@ -82,7 +82,7 @@ object ProtoData {
* transitional dependencies, this is the version used to build the project itself.
*/
val dogfoodingVersion: String
private const val fallbackDfVersion = "0.69.5"
private const val fallbackDfVersion = "0.70.1"

/**
* The artifact for the ProtoData Gradle plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ object Validation {
/**
* The version of the Validation library artifacts.
*/
const val version = "2.0.0-SNAPSHOT.176"
const val version = "2.0.0-SNAPSHOT.178"

const val group = "io.spine.validation"
private const val prefix = "spine-validation"
Expand Down

0 comments on commit 86f3cac

Please sign in to comment.