Skip to content

Bump org.apache.maven.plugins:maven-clean-plugin from 3.3.1 to 3.3.2 #330

Bump org.apache.maven.plugins:maven-clean-plugin from 3.3.1 to 3.3.2

Bump org.apache.maven.plugins:maven-clean-plugin from 3.3.1 to 3.3.2 #330

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 2
strategy:
matrix:
java: [ '8', '11', '17', '21' ]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
- name: Set up JDK
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 #v3.13.0
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
- name: Build
run: ./mvnw --no-transfer-progress -B clean verify --file pom.xml