Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
distribution: 'temurin'
cache: 'maven'

- name: Override docker client version # https://github.com/testcontainers/testcontainers-java/issues/11212
run: echo "api.version=1.44" > ~/.docker-java.properties

- name: Build with Maven
run: mvn $MAVEN_ARGS verify

Expand All @@ -53,6 +56,9 @@ jobs:
distribution: 'temurin'
cache: 'maven'

- name: Override docker client version # https://github.com/testcontainers/testcontainers-java/issues/11212
run: echo "api.version=1.44" > ~/.docker-java.properties

- name: Build with Maven
run: mvn $MAVEN_ARGS test

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ jobs:
yc/pom.xml
jdbc/pom.xml
- name: Override docker client version # https://github.com/testcontainers/testcontainers-java/issues/11212
run: echo "api.version=1.44" > ~/.docker-java.properties

- name: Extract YDB Java SDK version
working-directory: ./sdk
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
with:
script: core.setFailed('Release name must be equal to project version')

- name: Override docker client version # https://github.com/testcontainers/testcontainers-java/issues/11212
run: echo "api.version=1.44" > ~/.docker-java.properties

- name: Download dependencies
run: mvn $MAVEN_ARGS dependency:go-offline

Expand Down