Skip to content

Bump aquasecurity/trivy-action from 0.19.0 to 0.20.0 #2144

Bump aquasecurity/trivy-action from 0.19.0 to 0.20.0

Bump aquasecurity/trivy-action from 0.19.0 to 0.20.0 #2144

Workflow file for this run

name: MacOS Maven build
env:
MAVEN_OPTS: -Djava.awt.headless=true
concurrency:
# More info: https://stackoverflow.com/a/68422069/253468
group: ${{ github.workflow }}-${{ ( github.ref == 'refs/heads/main' || github.ref == 'refs/heads/release' ) && format('ci-master-{0}', github.sha) || format('ci-master-{0}', github.ref) }}
cancel-in-progress: true
on:
pull_request:
jobs:
build:
name: Build w/ Java 17
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: setup-java-Linux-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
setup-java-Linux-maven-
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
- name: 'Set up Maven'
uses: stCarolas/setup-maven@v5
with:
maven-version: '3.9.6'
- name: Priming build with Maven
run: mvn -B -V -fae -DskipTests -DskipITs -DskipQA=true install
- name: Build with Maven
run: |
mvn -B -fae -e test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Cleanup snapshots
run: |
find ~/.m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}