fix(deps): update dependency org.apache.ant:ant to v1.10.14 #405
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 11, 17 ] | |
maven: [ 3.8.1, 3.9.0 ] | |
name: Java ${{ matrix.java }}, Maven ${{ matrix.maven }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache local Maven repository | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Set up Java ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: temurin | |
- name: Set up Maven ${{ matrix.maven }} | |
uses: stCarolas/[email protected] | |
with: | |
maven-version: ${{ matrix.maven }} | |
- name: Run tests | |
run: mvn test integration-test |