Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve README/SBOM #439

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ In order to send results to GitHub Dependency Graph, you will need to create a [

```yaml
---
name: Pull Request
name: Generate SBOM
on:
push:
branches:
Expand All @@ -578,9 +578,8 @@ permissions:
contents: write

jobs:
build:
name: Checks
runs-on: ubuntu-20.04
generate-sbom:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -601,7 +600,7 @@ You can upload the report as an artifact and download it, for instance using the

```yaml
---
name: Pull Request
name: Generate SBOM
on:
push:
branches:
Expand All @@ -612,9 +611,8 @@ permissions:
contents: write

jobs:
build:
name: Checks
runs-on: ubuntu-20.04
generate-sbom:
runs-on: ubuntu-latest
steps:
- name: Scan image in a private registry
uses: aquasecurity/[email protected]
Expand Down