Skip to content

Update aqua-cloud.yml #332

Update aqua-cloud.yml

Update aqua-cloud.yml #332

Workflow file for this run

name: Aqua Cloud
on:
push:
branches: [ main ]
schedule:
- cron: '15 21 * * 2'
jobs:
build:
name: Vulnerability Scan
runs-on: "ubuntu-24.04"
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
set-safe-directory: '/github/workspace'
- name: Ownership workaround
run: git config --system --add safe.directory /github/workspace
- name: Run Trivy vulnerability scanner against Aqua Cloud
uses: aquasecurity/[email protected]
with:
scan-type: 'fs'
hide-progress: true
format: 'table'
scanners: 'vuln,config'
env:
AQUA_KEY: ${{ secrets.AQUA_KEY }}
AQUA_SECRET: ${{ secrets.AQUA_SECRET }}
TRIVY_RUN_AS_PLUGIN: 'aqua'