Skip to content

Temporarily enable CVE scanning per push for testing. #11

Temporarily enable CVE scanning per push for testing.

Temporarily enable CVE scanning per push for testing. #11

Workflow file for this run

name: Scan
on:
schedule:
- cron: 0 0 * * *
push:
jobs:
scan:
runs-on: ubuntu-latest
steps:
- name: Install State Tool
uses: ActiveState/setup-state-tool@v1
- name: Copy State Tool binaries to workspace dir
shell: bash
run: |
exe=`which state`
dir=`dirname $exe`
cp -r $dir/* ${{ github.workspace }}
- name: Scan binaries
uses: aquasecurity/[email protected]
with:
scan-type: rootfs
scan-ref: '.'
ignore-unfixed: true
format: table
exit-code: 1