Skip to content

chore: bump to v1.0.0 and make litellm optional #54

chore: bump to v1.0.0 and make litellm optional

chore: bump to v1.0.0 and make litellm optional #54

Workflow file for this run

name: Container Security
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
security-events: write
jobs:
trivy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Build image
run: docker build -t airlock-gateway:scan .
- name: Trivy vulnerability scan (SARIF)
uses: aquasecurity/trivy-action@0.35.0
with:
image-ref: airlock-gateway:scan
format: sarif
output: trivy-results.sarif
severity: CRITICAL,HIGH
- name: Upload Trivy SARIF to GitHub Security tab
if: always()
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: trivy-results.sarif
category: trivy-container
- name: Trivy scan (table for PR review)
uses: aquasecurity/trivy-action@0.35.0
with:
image-ref: airlock-gateway:scan
format: table
severity: CRITICAL,HIGH
exit-code: "0"