mirror of
https://github.com/searxng/searxng.git
synced 2025-07-11 23:39:18 +02:00
Bumps [aquasecurity/trivy-action](https://github.com/aquasecurity/trivy-action) from 0.31.0 to 0.32.0. - [Release notes](https://github.com/aquasecurity/trivy-action/releases) - [Commits](https://github.com/aquasecurity/trivy-action/compare/0.31.0...0.32.0) --- updated-dependencies: - dependency-name: aquasecurity/trivy-action dependency-version: 0.32.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
44 lines
986 B
YAML
44 lines
986 B
YAML
---
|
|
name: Security
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "42 05 * * *"
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}
|
|
cancel-in-progress: false
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
container:
|
|
if: github.repository_owner == 'searxng'
|
|
name: Container
|
|
runs-on: ubuntu-24.04-arm
|
|
permissions:
|
|
security-events: write
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
persist-credentials: "false"
|
|
|
|
- name: Run Trivy scanner
|
|
uses: aquasecurity/trivy-action@0.32.0
|
|
with:
|
|
image-ref: "ghcr.io/searxng/searxng:latest"
|
|
vuln-type: "os,library"
|
|
severity: "UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL"
|
|
ignore-unfixed: "false"
|
|
format: "sarif"
|
|
output: "./trivy-results.sarif"
|
|
|
|
- name: Upload SARIFs
|
|
uses: github/codeql-action/upload-sarif@v3
|
|
with:
|
|
sarif_file: "./trivy-results.sarif"
|