Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.5.0 #745

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.5.0

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.5.0 #745

Workflow file for this run

name: Java CI
on: [ push ]
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os: [ ubuntu-latest , windows-latest , macos-latest ]
java: [ 8, 11, 14 ]
experimental: [ false ]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: adopt
- name: Build with mvnw
run: |
chmod 777 ./mvnw
./mvnw install -Penforce