fixing scan command #10
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: Build & Scan | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
Build-and-Scan: | |
runs-on: ubuntu-latest | |
steps: | |
# Step 1: Checkout the repository code | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
# Step 2: Setup .NET SDK | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '9.0' | |
# Step 3: Restore .NET dependencies | |
- name: Restore .NET dependencies | |
run: dotnet restore ./src/MySampleDotNetApp/MySampleDotNetApp.csproj | |
# Step 4: Build the .NET project | |
- name: Build .NET project | |
run: dotnet build ./src/MySampleDotNetApp/MySampleDotNetApp.csproj --configuration Release | |
# Step 5: Run Trivy scan | |
- name: Run Trivy scan | |
uses: docker://aquasec/aqua-scanner | |
with: | |
args: trivy fs --sast --scanners misconfig,vuln,secret . | |
env: | |
AQUA_KEY: ${{ secrets.AQUA_KEY }} | |
AQUA_SECRET: ${{ secrets.AQUA_SECRET }} | |
GITHUB_TOKEN: ${{ github.token }} | |
AQUA_URL: ${{ env.AQUA_URL }} | |
CSPM_URL: ${{ env.CSPM_URL }} | |
TRIVY_RUN_AS_PLUGIN: "aqua" | |
# Step 6: Manifest Generation (Optional, for Aqua Security integration) | |
- name: Manifest Generation | |
run: | | |
export BILLY_SERVER=https://billy.codesec.aquasec.com | |
curl -sLo install.sh download.codesec.aquasec.com/billy/install.sh | |
curl -sLo install.sh.checksum https://github.com/argonsecurity/releases/releases/latest/download/install.sh.checksum | |
if ! cat install.sh.checksum | sha256sum -c ; then | |
echo "install.sh checksum failed" | |
exit 1 | |
fi | |
BINDIR="." sh install.sh | |
rm install.sh install.sh.checksum | |
./billy generate \ | |
--access-token "${{ secrets.GITHUB_TOKEN }}" \ | |
--aqua-key "${{ secrets.AQUA_KEY }}" \ | |
--aqua-secret "${{ secrets.AQUA_SECRET }}" \ | |
--cspm-url "${{ env.CSPM_URL }}" \ | |
--artifact-path "my-sample-app:${{ github.sha }}" | |
env: | |
CSPM_URL: ${{ env.CSPM_URL }} | |
AQUA_URL: ${{ env.AQUA_URL }} | |
AQUA_KEY: ${{ secrets.AQUA_KEY }} | |
AQUA_SECRET: ${{ secrets.AQUA_SECRET }} | |
GITHUB_TOKEN: ${{ github.token }} |