Skip to content

Commit e2834a0

Browse files
Merge branch 'main' into feature/1406-cache-sha256-digests
2 parents 9ed801b + 7c6da87 commit e2834a0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+154
-136
lines changed

.github/actions/setup-gradle/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: "composite"
55
steps:
66
- name: Setup Gradle Build Action
7-
uses: gradle/actions/setup-gradle@v4
7+
uses: gradle/actions/setup-gradle@v6
88
with:
99
gradle-home-cache-includes: |
1010
caches

.github/actions/setup-java/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
runs:
99
using: "composite"
1010
steps:
11-
- uses: actions/setup-java@v4
11+
- uses: actions/setup-java@v5
1212
with:
1313
java-version: ${{ inputs.java-version }}
1414
distribution: temurin

.github/actions/setup-junit-report/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: "composite"
55
steps:
66
- name: Publish Test Report
7-
uses: mikepenz/action-junit-report@v4
7+
uses: mikepenz/action-junit-report@v6
88
if: always() # always run even if the previous step fails
99
with:
1010
report_paths: '**/build/test-results/test/TEST-*.xml'

.github/dependabot.yml

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ updates:
2222
update-types: [ "version-update:semver-major" ]
2323
- dependency-name: "org.junit.platform:junit-platform-launcher"
2424
update-types: [ "version-update:semver-major" ]
25+
- dependency-name: "io.rest-assured:rest-assured"
26+
update-types: [ "version-update:semver-major" ]
2527
- package-ecosystem: "gradle"
2628
directory: "/"
2729
allow:
@@ -63,6 +65,9 @@ updates:
6365
schedule:
6466
interval: "monthly"
6567
open-pull-requests-limit: 10
68+
ignore:
69+
- dependency-name: "io.rest-assured:rest-assured"
70+
update-types: [ "version-update:semver-major" ]
6671
- package-ecosystem: "gradle"
6772
directory: "/modules/clickhouse"
6873
schedule:
@@ -78,6 +83,9 @@ updates:
7883
schedule:
7984
interval: "monthly"
8085
open-pull-requests-limit: 10
86+
ignore:
87+
- dependency-name: "io.rest-assured:rest-assured"
88+
update-types: [ "version-update:semver-major" ]
8189
- package-ecosystem: "gradle"
8290
directory: "/modules/couchbase"
8391
schedule:
@@ -122,6 +130,9 @@ updates:
122130
schedule:
123131
interval: "monthly"
124132
open-pull-requests-limit: 10
133+
ignore:
134+
- dependency-name: "io.rest-assured:rest-assured"
135+
update-types: [ "version-update:semver-major" ]
125136
- package-ecosystem: "gradle"
126137
directory: "/modules/hivemq"
127138
schedule:
@@ -214,6 +225,9 @@ updates:
214225
schedule:
215226
interval: "monthly"
216227
open-pull-requests-limit: 10
228+
ignore:
229+
- dependency-name: "io.rest-assured:rest-assured"
230+
update-types: [ "version-update:semver-major" ]
217231
- package-ecosystem: "gradle"
218232
directory: "/modules/mongodb"
219233
schedule:
@@ -254,6 +268,9 @@ updates:
254268
schedule:
255269
interval: "monthly"
256270
open-pull-requests-limit: 10
271+
ignore:
272+
- dependency-name: "io.rest-assured:rest-assured"
273+
update-types: [ "version-update:semver-major" ]
257274
- package-ecosystem: "gradle"
258275
directory: "/modules/openfga"
259276
schedule:
@@ -328,6 +345,9 @@ updates:
328345
schedule:
329346
interval: "monthly"
330347
open-pull-requests-limit: 10
348+
ignore:
349+
- dependency-name: "io.rest-assured:rest-assured"
350+
update-types: [ "version-update:semver-major" ]
331351
- package-ecosystem: "gradle"
332352
directory: "/modules/scylladb"
333353
schedule:
@@ -395,6 +415,9 @@ updates:
395415
schedule:
396416
interval: "monthly"
397417
open-pull-requests-limit: 10
418+
ignore:
419+
- dependency-name: "io.rest-assured:rest-assured"
420+
update-types: [ "version-update:semver-major" ]
398421
- package-ecosystem: "gradle"
399422
directory: "/modules/weaviate"
400423
schedule:
@@ -433,6 +456,8 @@ updates:
433456
update-types: [ "version-update:semver-major" ]
434457
- dependency-name: "org.junit.platform:junit-platform-launcher"
435458
update-types: [ "version-update:semver-major" ]
459+
- dependency-name: "org.junit:junit-bom"
460+
update-types: [ "version-update:semver-major" ]
436461
- dependency-name: "com.gradleup.shadow"
437462
update-types: [ "version-update:semver-major" ]
438463

@@ -456,7 +481,9 @@ updates:
456481

457482
# GitHub Actions
458483
- package-ecosystem: "github-actions"
459-
directory: "/"
484+
directories:
485+
- /.github/workflows
486+
- /.github/actions/**
460487
schedule:
461488
interval: "weekly"
462489
open-pull-requests-limit: 10

.github/workflows/ci-docker-wormhole.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
in-docker_test:
4545
runs-on: ubuntu-22.04
4646
steps:
47-
- uses: actions/checkout@v5
47+
- uses: actions/checkout@v6
4848
- name: Build with Gradle
4949
run: |
5050
docker run -i --rm \

.github/workflows/ci-rootless.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,12 @@ jobs:
4646
permissions:
4747
checks: write
4848
steps:
49-
- uses: actions/checkout@v5
49+
- uses: actions/checkout@v6
5050
- name: Setup rootless Docker
51-
uses: docker/setup-docker-action@v4
51+
uses: docker/setup-docker-action@v5
5252
with:
5353
rootless: true
54-
- name: Setup Gradle Build Action
55-
uses: gradle/actions/setup-gradle@v5
54+
- uses: ./.github/actions/setup-build
5655
- name: Build with Gradle
5756
run: ./gradlew --no-daemon --scan testcontainers:test --tests '*GenericContainerRuleTest'
5857
- uses: ./.github/actions/setup-junit-report

.github/workflows/ci-windows-trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Trigger windows-test command
18-
uses: peter-evans/slash-command-dispatch@13bc09769d122a64f75aa5037256f6f2d78be8c4 # v4.0.0
18+
uses: peter-evans/slash-command-dispatch@9bdcd7914ec1b75590b790b844aa3b8eee7c683a # v5.0.2
1919
with:
2020
token: ${{ secrets.WINDOWS_WORKERS_TOKEN }}
2121
# The command to trigger the pipeline: e.g. /windows-test

.github/workflows/ci-windows.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
permissions:
5353
checks: write
5454
steps:
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656
- uses: ./.github/actions/setup-build
5757
- name: Build with Gradle
5858
run: ./gradlew.bat cleanTest testcontainers:test --no-daemon --continue --scan --no-build-cache
@@ -66,7 +66,7 @@ jobs:
6666
statuses: write
6767
steps:
6868
- name: Create pending status
69-
uses: actions/github-script@v8
69+
uses: actions/github-script@v9
7070
with:
7171
github-token: ${{ secrets.GITHUB_TOKEN }}
7272
script: |
@@ -78,7 +78,7 @@ jobs:
7878
target_url: `https://github.com/${process.env.GITHUB_REPOSITORY}/actions/runs/${process.env.GITHUB_RUN_ID}`,
7979
context: 'CI - Windows',
8080
})
81-
- uses: actions/checkout@v5
81+
- uses: actions/checkout@v6
8282
with:
8383
token: ${{ secrets.GITHUB_TOKEN }}
8484
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
@@ -89,7 +89,7 @@ jobs:
8989
- uses: ./.github/actions/setup-junit-report
9090

9191
- name: Create success status
92-
uses: actions/github-script@v8
92+
uses: actions/github-script@v9
9393
if: success()
9494
with:
9595
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -104,7 +104,7 @@ jobs:
104104
})
105105
106106
- name: Create failure status
107-
uses: actions/github-script@v8
107+
uses: actions/github-script@v9
108108
if: failure()
109109
with:
110110
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/ci.yml

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
matrix:
5555
java: [ '17', '21' ]
5656
steps:
57-
- uses: actions/checkout@v5
57+
- uses: actions/checkout@v6
5858
- uses: ./.github/actions/setup-build
5959
with:
6060
java-version: ${{ matrix.java }}
@@ -69,7 +69,7 @@ jobs:
6969
permissions:
7070
checks: write
7171
steps:
72-
- uses: actions/checkout@v5
72+
- uses: actions/checkout@v6
7373
- uses: ./.github/actions/setup-build
7474
- name: Setup Testcontainers Cloud Client
7575
uses: atomicjar/testcontainers-cloud-setup-action@main
@@ -88,10 +88,8 @@ jobs:
8888
outputs:
8989
matrix: ${{ steps.set-matrix.outputs.matrix }}
9090
steps:
91-
- uses: actions/checkout@v5
92-
- uses: ./.github/actions/setup-java
93-
- name: Setup Gradle Build Action
94-
uses: gradle/actions/setup-gradle@v5
91+
- uses: actions/checkout@v6
92+
- uses: ./.github/actions/setup-build
9593
- id: set-matrix
9694
env:
9795
# Since we override the tests executor,
@@ -110,7 +108,7 @@ jobs:
110108
permissions:
111109
checks: write
112110
steps:
113-
- uses: actions/checkout@v5
111+
- uses: actions/checkout@v6
114112
- uses: ./.github/actions/setup-build
115113
- name: Build and test with Gradle (${{matrix.gradle_args}})
116114
run: |
@@ -123,10 +121,8 @@ jobs:
123121
outputs:
124122
matrix: ${{ steps.set-matrix.outputs.matrix }}
125123
steps:
126-
- uses: actions/checkout@v5
127-
- uses: ./.github/actions/setup-java
128-
- name: Setup Gradle Build Action
129-
uses: gradle/actions/setup-gradle@v5
124+
- uses: actions/checkout@v6
125+
- uses: ./.github/actions/setup-build
130126
- id: set-matrix
131127
working-directory: ./examples/
132128
env:
@@ -146,7 +142,7 @@ jobs:
146142
permissions:
147143
checks: write
148144
steps:
149-
- uses: actions/checkout@v5
145+
- uses: actions/checkout@v6
150146
- uses: ./.github/actions/setup-build
151147
- name: Build and test Examples with Gradle (${{matrix.gradle_args}})
152148
working-directory: ./examples/
@@ -160,10 +156,8 @@ jobs:
160156
outputs:
161157
matrix: ${{ steps.set-matrix.outputs.matrix }}
162158
steps:
163-
- uses: actions/checkout@v5
164-
- uses: ./.github/actions/setup-java
165-
- name: Setup Gradle Build Action
166-
uses: gradle/actions/setup-gradle@v5
159+
- uses: actions/checkout@v6
160+
- uses: ./.github/actions/setup-build
167161
- id: set-matrix
168162
env:
169163
# Since we override the tests executor,
@@ -182,7 +176,7 @@ jobs:
182176
permissions:
183177
checks: write
184178
steps:
185-
- uses: actions/checkout@v5
179+
- uses: actions/checkout@v6
186180
- uses: ./.github/actions/setup-build
187181
- name: Build and test with Gradle (${{matrix.gradle_args}})
188182
run: |

.github/workflows/moby-latest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
runs-on: ubuntu-22.04
2828
continue-on-error: true
2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
- uses: ./.github/actions/setup-build
3232

3333
- name: Install Stable Docker
3434
id: setup_docker
35-
uses: docker/setup-docker-action@v4
35+
uses: docker/setup-docker-action@v5
3636
with:
3737
version: ${{ matrix.version }}
3838
channel: ${{ matrix.channel }}
@@ -50,7 +50,7 @@ jobs:
5050
- name: Notify to Slack on failures
5151
if: failure()
5252
id: slack
53-
uses: slackapi/slack-github-action@v2.1.1
53+
uses: slackapi/slack-github-action@v3.0.1
5454
with:
5555
payload: |
5656
{

0 commit comments

Comments
 (0)