Skip to content

Commit 20d6ed1

Browse files
authored
Merge branch 'main' into feat/improve-errors
2 parents cdb089c + e45b1e4 commit 20d6ed1

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/main.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
java: [11, 17, 21]
2222

2323
steps:
24-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
24+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2525

2626
- name: Set up JDK
2727
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
@@ -55,7 +55,7 @@ jobs:
5555
packages: write
5656

5757
steps:
58-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
58+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
5959

6060
- name: Set up JDK
6161
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
@@ -88,7 +88,7 @@ jobs:
8888
packages: write
8989

9090
steps:
91-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
91+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
9292

9393
- name: Set up JDK
9494
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
@@ -119,7 +119,7 @@ jobs:
119119
contents: write
120120

121121
steps:
122-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
122+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
123123

124124
- uses: Roang-zero1/github-create-release-action@57eb9bdce7a964e48788b9e78b5ac766cb684803 # v3.0.1
125125
with:

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: "Checkout code"
37-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
37+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3838
with:
3939
persist-credentials: false
4040

@@ -64,7 +64,7 @@ jobs:
6464
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6565
# format to the repository Actions tab.
6666
- name: "Upload artifact"
67-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
67+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6868
with:
6969
name: SARIF file
7070
path: results.sarif

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jacocoTestReport {
5555
}
5656

5757
ext {
58-
jackson_version = "2.20.0"
58+
jackson_version = "2.20.1"
5959
}
6060

6161
dependencies {
@@ -67,10 +67,10 @@ dependencies {
6767
implementation "com.fasterxml.jackson.core:jackson-annotations"
6868
implementation "com.fasterxml.jackson.core:jackson-databind"
6969
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
70-
implementation "org.openapitools:jackson-databind-nullable:0.2.7"
70+
implementation "org.openapitools:jackson-databind-nullable:0.2.8"
7171

7272
// ---- OpenTelemetry ----
73-
implementation platform("io.opentelemetry:opentelemetry-bom:1.54.1")
73+
implementation platform("io.opentelemetry:opentelemetry-bom:1.56.0")
7474
implementation "io.opentelemetry:opentelemetry-api"
7575
}
7676

@@ -81,8 +81,8 @@ testing {
8181
dependencies {
8282
implementation 'org.assertj:assertj-core:3.27.6'
8383
implementation 'org.mockito:mockito-core:5.20.0'
84-
implementation 'org.junit.jupiter:junit-jupiter:5.14.0'
85-
implementation 'org.wiremock:wiremock:3.13.1'
84+
implementation 'org.junit.jupiter:junit-jupiter:5.14.1'
85+
implementation 'org.wiremock:wiremock:3.13.2'
8686

8787
runtimeOnly 'org.junit.platform:junit-platform-launcher'
8888

@@ -114,8 +114,8 @@ testing {
114114
implementation "com.fasterxml.jackson.core:jackson-core"
115115
implementation "com.fasterxml.jackson.core:jackson-databind"
116116

117-
implementation "org.testcontainers:testcontainers-junit-jupiter:2.0.1"
118-
implementation "org.testcontainers:testcontainers-openfga:2.0.1"
117+
implementation "org.testcontainers:testcontainers-junit-jupiter:2.0.2"
118+
implementation "org.testcontainers:testcontainers-openfga:2.0.2"
119119
implementation project()
120120
}
121121

examples/basic-examples/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'application'
33
id 'com.diffplug.spotless' version '8.0.0'
4-
id 'org.jetbrains.kotlin.jvm' version '2.2.20'
4+
id 'org.jetbrains.kotlin.jvm' version '2.2.21'
55
}
66

77
application {
@@ -30,7 +30,7 @@ dependencies {
3030
implementation("com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion")
3131
implementation("com.fasterxml.jackson.core:jackson-databind:$jacksonVersion")
3232
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jacksonVersion")
33-
implementation("org.openapitools:jackson-databind-nullable:0.2.7")
33+
implementation("org.openapitools:jackson-databind-nullable:0.2.8")
3434

3535
// Kotlin
3636
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"

0 commit comments

Comments
 (0)