Skip to content

Commit 93fc746

Browse files
Merge branch 'main' into renovate/io.mockk-mockk-1.x
2 parents 327c603 + f2a79f0 commit 93fc746

File tree

7 files changed

+31
-33
lines changed

7 files changed

+31
-33
lines changed

.github/workflows/build-and-test.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,19 @@ jobs:
1212
- name: Checkout Repository
1313
uses: actions/checkout@v4
1414

15-
- name: Setup JDK 8
15+
- name: Setup JDK 11
1616
uses: actions/setup-java@v4
1717
with:
18-
distribution: 'temurin'
19-
java-version: '1.8'
18+
java-version: 11
19+
distribution: corretto
2020

2121
- name: Build and Test
22-
run: ./gradlew clan build
22+
run: ./gradlew clean build
2323

2424
run-integration-tests:
25-
runs-on: ubuntu-latest
26-
steps:
27-
- name: Run Integration Tests
28-
uses: ./.github/workflows/run-integration-tests.yaml
29-
with:
30-
branch: main
31-
jdk: '1.8'
32-
distribution: 'corretto'
25+
uses: ./.github/workflows/run-integration-tests.yaml
26+
with:
27+
branch: ${{ github.ref }}
28+
jdk: 11
29+
distribution: corretto
3330

.github/workflows/manual-release.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ permissions:
77
contents: write
88

99
jobs:
10-
run-examples:
11-
runs-on: ubuntu-latest
12-
steps:
13-
- name: Run Examples
14-
uses: ./.github/workflows/run-examples.yaml
15-
with:
16-
branch: main
17-
jdk: '1.8'
18-
distribution: 'corretto'
10+
# run-examples:
11+
# runs-on: ubuntu-latest
12+
# steps:
13+
# - name: Run Examples
14+
# uses: ./.github/workflows/run-examples.yaml
15+
# with:
16+
# branch: main
17+
# jdk: 11
18+
# distribution: corretto
1919

2020
run-integration-tests:
2121
runs-on: ubuntu-latest
@@ -24,23 +24,23 @@ jobs:
2424
uses: ./.github/workflows/run-integration-tests.yaml
2525
with:
2626
branch: main
27-
jdk: '1.8'
28-
distribution: 'corretto'
27+
jdk: 11
28+
distribution: corretto
2929

3030
publish-to-maven-central:
3131
runs-on: ubuntu-latest
32-
needs: [run-examples, run-integration-tests]
32+
needs: [run-integration-tests]
3333
steps:
3434
- name: Checkout Repository
3535
uses: actions/checkout@v4
3636
with:
3737
token: ${{ secrets.GITHUB_TOKEN }}
3838

39-
- name: Setup JDK 8
39+
- name: Setup JDK 11
4040
uses: actions/setup-java@v4
4141
with:
42-
distribution: 'corretto'
43-
java-version: '1.8'
42+
java-version: 11
43+
distribution: corretto
4444

4545
- name: Build and Test
4646
run: ./gradlew clean build

.github/workflows/release-sdk-snapshot.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
- name: Checkout
1616
uses: actions/checkout@v4
1717

18-
- name: Setup JDK 8
18+
- name: Setup JDK 11
1919
uses: actions/setup-java@v4
2020
with:
21-
distribution: 'corretto'
22-
java-version: '1.8'
21+
java-version: 11
22+
distribution: corretto
2323

2424
- name: Clean and Build
2525
run: ./gradlew clean build

.github/workflows/run-integration-tests.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
uses: actions/checkout@v4
2929
with:
3030
ref: ${{ inputs.branch }}
31+
fetch-depth: 0
3132

3233
- name: Set up JDK
3334
uses: actions/setup-java@v4

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ repositories {
88

99
dependencies {
1010
api("org.openapitools:openapi-generator:7.11.0")
11-
implementation("com.samskivert:jmustache:1.15")
11+
implementation("com.samskivert:jmustache:1.16")
1212
}

examples/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ dependencies {
4646

4747
implementation("org.apache.logging.log4j:log4j-api:2.24.3")
4848
implementation("org.apache.logging.log4j:log4j-slf4j2-impl:2.24.3")
49-
implementation("com.fasterxml.jackson.core:jackson-databind:2.18.3")
49+
implementation("com.fasterxml.jackson.core:jackson-databind:2.19.2")
5050
implementation("org.apache.commons:commons-lang3:3.17.0")
5151
}

xap-sdk/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ version = property("VERSION") as String
2222
dependencies {
2323
api("com.expediagroup:expediagroup-sdk-rest:1.0.0")
2424

25-
implementation(platform("com.fasterxml.jackson:jackson-bom:2.18.2"))
25+
implementation(platform("com.fasterxml.jackson:jackson-bom:2.19.2"))
2626
implementation("com.fasterxml.jackson.core:jackson-databind")
2727
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
2828
runtimeOnly("com.fasterxml.jackson.datatype:jackson-datatype-jsr310")

0 commit comments

Comments
 (0)