Fixed portmap-ssh retry in example #141
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
--- | |
name: trivy | |
on: | |
push: # All branches and tags | |
schedule: | |
# Runs automatically on the 27th of every month at 04:30 UTC | |
- cron: "30 04 27 * *" | |
jobs: | |
trivy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@master | |
with: | |
scan-type: fs | |
exit-code: "1" |