Skip to content

[WFLY-19135] Bump version.org.testcontainers from 1.19.6 to 1.19.7 #2568

[WFLY-19135] Bump version.org.testcontainers from 1.19.6 to 1.19.7

[WFLY-19135] Bump version.org.testcontainers from 1.19.6 to 1.19.7 #2568

Workflow file for this run

name: WildFly Build
on:
pull_request:
branches:
- '**'
paths:
- "**/pom.xml"
# Only run the latest job
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
quick-build:
name: WildFly Build -Dquickly
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'temurin'
cache: 'maven'
- name: Clear any possible SNAPSHOT dependencies in the local maven repository
run: |
LOCAL_REPO="$HOME/.m2/repository"
echo "Cleaning SNAPSHOTS from $LOCAL_REPO"
if [ -d "$LOCAL_REPO" ]; then find "$LOCAL_REPO" -name "*SNAPSHOT*" | xargs -I {} rm -rfv "{}"; fi
shell: bash
- name: Build with Maven Java 11 -Dquickly
run: mvn -U -B -Dquickly