Skip to content

update sbom pipeline #2

update sbom pipeline

update sbom pipeline #2

Workflow file for this run

name: SBOM
on:
push:
branches:
- sbom
workflow_dispatch:
jobs:
build-test-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: checkout
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build (and test) project with Maven
run: mvn -B package --file pom.xml
- name: Scan current project
uses: anchore/scan-action@v3
with:
path: "."
fail-build: false
output-format: table