Bump org.owasp:dependency-check-maven from 8.3.1 to 8.4.0 #199
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: Build with Maven using Batect | |
on: | |
push: | |
paths-ignore: | |
- '*.md' | |
pull_request: | |
paths-ignore: | |
- '*.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Builds and tests for Maven | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@master | |
- name: Validate Batect wrapper scripts | |
uses: batect/[email protected] | |
- name: Restore Batect caches | |
uses: actions/cache@master | |
env: | |
cache-name: batect-cache | |
with: | |
path: ~/.batect | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/batect.xml') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Manage Batect telemetry | |
run: ./batect --permanently-enable-telemetry | |
- name: Restore Maven caches | |
uses: actions/cache@master | |
env: | |
cache-name: maven-cache | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Build and test | |
run: ./batect build-with-maven | |
- name: Execute run script | |
run: ./batect -o quiet run-with-maven | |
- name: Save artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: jars | |
path: target/modern-java-practices*.jar | |
- name: Save site | |
uses: actions/upload-artifact@v3 | |
with: | |
name: site | |
path: target/site/ |