Bump org.testcontainers:testcontainers from 1.21.0 to 1.21.1 #2252
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: {} | |
push: { branches: [ main ] } | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- { name: "default", javaVersion: 8 } | |
- { name: "default", javaVersion: 17 } | |
- { name: "default", javaVersion: 21 } | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{matrix.javaVersion}} | |
distribution: temurin | |
- name: Configure Docker | |
id: setup_docker | |
uses: docker/setup-docker-action@v4 | |
with: | |
channel: stable | |
- name: Build with Maven | |
env: | |
DOCKER_HOST: ${{steps.setup_docker.outputs.sock}} | |
run: ./mvnw --no-transfer-progress verify | |
tcp: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 8 | |
distribution: temurin | |
- name: Configure Docker | |
id: setup_docker | |
uses: docker/setup-docker-action@v4 | |
with: | |
channel: stable | |
tcp-port: 2375 | |
- name: Build with Maven | |
env: | |
DOCKER_HOST: ${{steps.setup_docker.outputs.tcp}} | |
run: ./mvnw --no-transfer-progress verify |