Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 2.22.2 to 3.2.3 #155

Bump org.apache.maven.plugins:maven-surefire-plugin from 2.22.2 to 3.2.3

Bump org.apache.maven.plugins:maven-surefire-plugin from 2.22.2 to 3.2.3 #155

Workflow file for this run

name: Build via Maven and run tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots package