Skip to content

Commit 1630f95

Browse files
authored
Merge branch 'main' into main
2 parents 079a494 + 7209ff6 commit 1630f95

File tree

257 files changed

+2810
-2309
lines changed

Some content is hidden

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

257 files changed

+2810
-2309
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ updates:
2727
schedule:
2828
interval: "weekly"
2929
open-pull-requests-limit: 10
30+
ignore:
31+
- dependency-name: "com.gradleup.shadow"
32+
update-types: [ "version-update:semver-major" ]
3033

3134
# Explicit entry for each module
3235
- package-ecosystem: "gradle"
@@ -272,11 +275,17 @@ updates:
272275
schedule:
273276
interval: "monthly"
274277
open-pull-requests-limit: 10
278+
ignore:
279+
- dependency-name: "io.pinecone:pinecone-client"
280+
update-types: [ "version-update:semver-major" ]
275281
- package-ecosystem: "gradle"
276282
directory: "/modules/pulsar"
277283
schedule:
278284
interval: "monthly"
279285
open-pull-requests-limit: 10
286+
ignore:
287+
- dependency-name: "org.apache.pulsar:pulsar-bom"
288+
update-types: [ "version-update:semver-patch" ]
280289
- package-ecosystem: "gradle"
281290
directory: "/modules/qdrant"
282291
schedule:
@@ -400,7 +409,7 @@ updates:
400409
- dependency-name: "org.springframework.boot"
401410
update-types: [ "version-update:semver-major" ]
402411
- dependency-name: "com.diffplug.spotless"
403-
update-types: [ "version-update:semver-minor" ]
412+
update-types: [ "version-update:semver-major", "version-update:semver-minor" ]
404413
- dependency-name: "com.hazelcast:hazelcast"
405414
update-types: [ "version-update:semver-minor" ]
406415

@@ -414,7 +423,7 @@ updates:
414423
- dependency-name: "ch.qos.logback:logback-classic"
415424
update-types: [ "version-update:semver-minor" ]
416425
- dependency-name: "com.diffplug.spotless"
417-
update-types: [ "version-update:semver-minor" ]
426+
update-types: [ "version-update:semver-major", "version-update:semver-minor" ]
418427

419428
# GitHub Actions
420429
- package-ecosystem: "github-actions"

.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@v4
47+
- uses: actions/checkout@v5
4848
- name: Build with Gradle
4949
run: |
5050
docker run -i --rm \

.github/workflows/ci-rootless.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
permissions:
4747
checks: write
4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v5
5050
- name: Setup rootless Docker
5151
uses: docker/setup-docker-action@v4
5252
with:

.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@v4
55+
- uses: actions/checkout@v5
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@v7
69+
uses: actions/github-script@v8
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@v4
81+
- uses: actions/checkout@v5
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@v7
92+
uses: actions/github-script@v8
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@v7
107+
uses: actions/github-script@v8
108108
if: failure()
109109
with:
110110
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/ci.yml

Lines changed: 9 additions & 9 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@v4
57+
- uses: actions/checkout@v5
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@v4
72+
- uses: actions/checkout@v5
7373
- uses: ./.github/actions/setup-build
7474
- name: Setup Testcontainers Cloud Client
7575
uses: atomicjar/testcontainers-cloud-setup-action@main
@@ -88,7 +88,7 @@ jobs:
8888
outputs:
8989
matrix: ${{ steps.set-matrix.outputs.matrix }}
9090
steps:
91-
- uses: actions/checkout@v4
91+
- uses: actions/checkout@v5
9292
- uses: ./.github/actions/setup-java
9393
- name: Setup Gradle Build Action
9494
uses: gradle/actions/setup-gradle@v4
@@ -98,7 +98,7 @@ jobs:
9898
# we should not push empty results to the cache
9999
READ_ONLY_REMOTE_GRADLE_CACHE: true
100100
run: |
101-
TASKS=$(./gradlew --no-daemon --parallel -q testMatrix | jq 'del(.[] | select(. == ":testcontainers:check" or startswith(":docs:")))' --compact-output)
101+
TASKS=$(./gradlew --no-daemon --parallel -q testMatrix | jq 'del(.[] | select(. == ":testcontainers-databend:check" or . == ":testcontainers:check" or startswith(":docs:")))' --compact-output)
102102
echo $TASKS
103103
echo "matrix={\"gradle_args\":$TASKS}" >> $GITHUB_OUTPUT
104104
check:
@@ -110,7 +110,7 @@ jobs:
110110
permissions:
111111
checks: write
112112
steps:
113-
- uses: actions/checkout@v4
113+
- uses: actions/checkout@v5
114114
- uses: ./.github/actions/setup-build
115115
- name: Build and test with Gradle (${{matrix.gradle_args}})
116116
run: |
@@ -123,7 +123,7 @@ jobs:
123123
outputs:
124124
matrix: ${{ steps.set-matrix.outputs.matrix }}
125125
steps:
126-
- uses: actions/checkout@v4
126+
- uses: actions/checkout@v5
127127
- uses: ./.github/actions/setup-java
128128
- name: Setup Gradle Build Action
129129
uses: gradle/actions/setup-gradle@v4
@@ -146,7 +146,7 @@ jobs:
146146
permissions:
147147
checks: write
148148
steps:
149-
- uses: actions/checkout@v4
149+
- uses: actions/checkout@v5
150150
- uses: ./.github/actions/setup-build
151151
- name: Build and test Examples with Gradle (${{matrix.gradle_args}})
152152
working-directory: ./examples/
@@ -160,7 +160,7 @@ jobs:
160160
outputs:
161161
matrix: ${{ steps.set-matrix.outputs.matrix }}
162162
steps:
163-
- uses: actions/checkout@v4
163+
- uses: actions/checkout@v5
164164
- uses: ./.github/actions/setup-java
165165
- name: Setup Gradle Build Action
166166
uses: gradle/actions/setup-gradle@v4
@@ -182,7 +182,7 @@ jobs:
182182
permissions:
183183
checks: write
184184
steps:
185-
- uses: actions/checkout@v4
185+
- uses: actions/checkout@v5
186186
- uses: ./.github/actions/setup-build
187187
- name: Build and test with Gradle (${{matrix.gradle_args}})
188188
run: |

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
pull-requests: write
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/labeler@v5
12+
- uses: actions/labeler@v6
1313
with:
1414
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/moby-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-22.04
2222
continue-on-error: true
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- uses: ./.github/actions/setup-build
2626

2727
- name: Install Stable Docker

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
release:
1616
runs-on: ubuntu-22.04
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- uses: ./.github/actions/setup-java
2020
- name: Clear existing docker image cache
2121
run: docker image prune -af

.github/workflows/update-docs-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: github.repository == 'testcontainers/testcontainers-java'
1616
runs-on: ubuntu-22.04
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
with:
2020
ref: main
2121
- name: Update latest_version property in mkdocs.yml

.github/workflows/update-gradle-wrapper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020

2121
- name: Update Gradle Wrapper
2222
uses: gradle-update/update-gradle-wrapper-action@512b1875f3b6270828abfe77b247d5895a2da1e5 # v1.0.13

0 commit comments

Comments
 (0)