build(deps): bump org.apache.tomcat.embed:tomcat-embed-core from 10.1.0-M16 to 10.1.16 in /tomcat-embedded-10 #4
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
# Simple CI job that does `mvn clean install` on several JDKs | |
name: Arquillian Container Tomcat CI | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: "Build project - JDK ${{matrix.java.name}}" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
java: | |
- { name: "11", | |
java-version: 11, | |
} | |
- { | |
name: "17", | |
java-version: 17, | |
} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK ${{ matrix.java.name }} | |
uses: actions/[email protected] | |
with: | |
java-version: ${{ matrix.java.java-version }} | |
- name: "Build with Maven" | |
run: | | |
mvn clean install |