Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into spring-graphql-refa…
Browse files Browse the repository at this point in the history
…ctored

# Conflicts:
#	graphql-dgs-example-java-webflux/dependencies.lock
#	graphql-dgs-reactive/dependencies.lock
#	graphql-dgs-spring-webflux-autoconfigure/dependencies.lock
#	graphql-dgs-webflux-starter/dependencies.lock
  • Loading branch information
srinivasankavitha committed Jan 25, 2024
2 parents 54ecdb3 + 690878a commit 9a2bf99
Show file tree
Hide file tree
Showing 66 changed files with 94,506 additions and 11,893 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@ jobs:
python -m pip install --upgrade pip
if [ -f scripts/requirements.txt ]; then pip install -r scripts/requirements.txt; fi
- uses: actions/cache@v3.3.2
- uses: actions/cache@v4.0.0
id: gradle-wrapper-cache
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradlewrapper-${{ hashFiles('gradle/wrapper/*') }}
restore-keys: ${{ runner.os }}-gradlewrapper-

- name: Cache Gradle packages
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.0
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle

- name: Maven cache
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.0
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nebula-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
with:
distribution: 'zulu'
java-version: 8
- uses: actions/cache@v3.3.2
- uses: actions/cache@v4.0.0
id: gradle-cache
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
restore-keys: |
- ${{ runner.os }}-gradle-
- uses: actions/cache@v3.3.2
- uses: actions/cache@v4.0.0
id: gradle-wrapper-cache
with:
path: ~/.gradle/wrapper
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ allprojects {
// and suggest an upgrade. The only exception currently are those defined
// in buildSrc, most likely because the variables are used in plugins as well
// as dependencies. e.g. KOTLIN_VERSION
extra["sb.version"] = "3.2.0"
extra["sb.version"] = "3.2.2"
extra["kotlin.version"] = Versions.KOTLIN_VERSION
val springBootVersion = extra["sb.version"] as String

Expand All @@ -71,7 +71,7 @@ allprojects {
mavenBom(mapOf("module" to "org.jetbrains.kotlin:kotlin-bom:${Versions.KOTLIN_VERSION}"))

mavenBom(mapOf("module" to "org.springframework.boot:spring-boot-dependencies:${springBootVersion}"))
mavenBom(mapOf("module" to "org.springframework.cloud:spring-cloud-dependencies:2022.0.0"))
mavenBom(mapOf("module" to "org.springframework.cloud:spring-cloud-dependencies:2023.0.+"))
mavenBom(mapOf("module" to "com.fasterxml.jackson:jackson-bom:2.15.+"))
}
}
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
*/

object Versions {
const val KOTLIN_VERSION = "1.9.21"
const val KOTLIN_VERSION = "1.9.22"
}
Loading

0 comments on commit 9a2bf99

Please sign in to comment.