forked from shaarli/Shaarli
-
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.
WIP: run trivy security scans on release docker image/composer depend…
…encies
- Loading branch information
Showing
2 changed files
with
25 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: trivy security scans (release) | ||
on: | ||
schedule: | ||
#- cron: '0 17 * * 1' | ||
- cron: '10 * * * 1' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
trivy-repo: | ||
runs-on: ubuntu-latest | ||
name: trivy scan (release composer dependencies) | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Run trivy scanner on repository | ||
run: make test_trivy_repo | ||
trivy-docker: | ||
runs-on: ubuntu-latest | ||
name: trivy scan (release docker image) | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Run trivy scanner on release docker image | ||
run: make test_trivy_docker TRIVY_TARGET_DOCKER_IMAGE=ghcr.io/shaarli/shaarli:release |
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