-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix git checkout action - Git version 2.35.2 introduces security fix that breaks action\checkout - actions/checkout#760 * update README * execute Docker Scout only on PRs * add examples for secrets and vars file * add elif to cspell * add .secrets and .vars to .gitignore
- Loading branch information
Showing
7 changed files
with
42 additions
and
9 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 |
---|---|---|
|
@@ -33,6 +33,7 @@ | |
"dnsutils", | ||
"dockerhub", | ||
"dpkg", | ||
"elif", | ||
"fakeroot", | ||
"getversion", | ||
"gfortran", | ||
|
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 |
---|---|---|
|
@@ -192,17 +192,18 @@ jobs: | |
- name: Docker Scout | ||
id: docker-scout | ||
uses: docker/[email protected] | ||
if: github.event_name == 'pull_request' | ||
with: | ||
# platform: linux/amd64 | ||
command: sbom,compare | ||
image: ${{ github.ref == 'refs/heads/main' && steps.meta.outputs.tags || env.PATH_TO_IMAGE }} | ||
type: ${{ github.ref == 'refs/heads/main' && 'image' || 'archive' }} | ||
image: ${{ env.PATH_TO_IMAGE }} | ||
type: archive | ||
to: ${{ env.TO_TAG }} | ||
ignore-unchanged: true | ||
only-severities: critical | ||
write-comment: ${{ github.event_name == 'pull_request' && github.actor != 'nektos/act' }} | ||
write-comment: ${{ github.actor != 'nektos/act' }} | ||
keep-previous-comments: true | ||
summary: ${{ github.event_name == 'pull_request' && github.actor != 'nektos/act' }} | ||
summary: ${{ github.actor != 'nektos/act' }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
organization: ${{ vars.DOCKERHUB_USER || github.repository_owner }} | ||
|
||
|
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
megalinter-reports/ | ||
.secrets | ||
.vars |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
DOCKERHUB_TOKEN=<keep-me-secret> |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
DOCKERHUB_USER=<your_docker_hub_user> |
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
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