Skip to content

Bump org.testcontainers:junit-jupiter from 1.19.5 to 1.19.6 #506

Bump org.testcontainers:junit-jupiter from 1.19.5 to 1.19.6

Bump org.testcontainers:junit-jupiter from 1.19.5 to 1.19.6 #506

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Java CI with Maven
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get Java Version
run: |
Java_Version=$(mvn help:evaluate "-Dexpression=maven.compiler.release" -q -DforceStdout | sed -e 's/^1\./1.0./')
echo "Java_Version=$Java_Version" >> $GITHUB_ENV
- name: Set up JDK ${{ env.Java_Version }}
uses: actions/setup-java@v4
with:
java-version: ${{ env.Java_Version }}
distribution: 'temurin'
cache: maven
- name: Compile with Maven
run: mvn -B compile --file pom.xml
- name: Test with Maven
run: mvn -B test --file pom.xml