Skip to content

Commit

Permalink
run trivy security scans on release docker image/composer/yarn depend…
Browse files Browse the repository at this point in the history
…encies
  • Loading branch information
nodiscc committed Oct 28, 2023
1 parent 5b21103 commit 466af8c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/trivy-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: trivy security scans (release)
on:
schedule:
#- cron: '0 17 * * 1'
- cron: '12 * * * 1'
workflow_dispatch:

jobs:
trivy-repo:
runs-on: ubuntu-latest
name: trivy scan (release composer/yarn dependencies)
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: release
- name: Run trivy scanner on repository
run: make test_trivy_repo TRIVY_EXIT_CODE=1
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

0 comments on commit 466af8c

Please sign in to comment.