This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
[Snyk] Security upgrade org.yaml:snakeyaml from 1.29 to 1.31 #47
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
name: Continuous Integration | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 11, 16 ] | |
name: Java ${{ matrix.java }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@master | |
- name: Setup java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- run: ./mvnw verify | |
- name: Upload artefact | |
uses: actions/upload-artifact@master | |
with: | |
name: capfile-java-${{ matrix.java }}.jar | |
path: target/capfile.jar |