-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use logical workflow name * Use modern ubuntu version
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
@@ -580,7 +580,7 @@ permissions: | |
jobs: | ||
build: | ||
name: Checks | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
@@ -601,7 +601,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: | ||
|
@@ -614,7 +614,7 @@ permissions: | |
jobs: | ||
build: | ||
name: Checks | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Scan image in a private registry | ||
uses: aquasecurity/[email protected] | ||
|