Run Browser test for LTS versions, too. #45
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: "Anchore Container Scan" | |
on: push | |
jobs: | |
Anchore-Build-Scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v3 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: 8 | |
- name: Cache Maven packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Build with Maven | |
run: mvn -B clean package | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag localbuild/testimage:latest | |
- name: Run the Anchore scan action | |
uses: anchore/scan-action@main | |
with: | |
image: "localbuild/testimage:latest" | |
fail-build: false | |
# GitHub Advanced Security code scanning integration enabled | |
acs-report-enable: true | |
- name: Upload Anchore Scan Report | |
uses: github/codeql-action/upload-sarif@v1 | |
with: | |
sarif_file: results.sarif |