Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.3 to 3.5.4 #120

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.3 to 3.5.4

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.3 to 3.5.4 #120

Workflow file for this run

name: ci
on:
push:
paths-ignore:
- "**/*.md"
- ".github/dependabot.yml"
pull_request:
paths-ignore:
- "**/*.md"
- ".github/dependabot.yml"
workflow_dispatch: # Manual trigger
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17', '21' ]
name: Java ${{ matrix.Java }}
steps:
- uses: actions/checkout@v5
- name: Set-up Java
uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build with Maven
# See https://maven.apache.org/ref/current/maven-embedder/cli.html
run: ./mvnw --batch-mode -V --fail-at-end --errors install