mirror of
https://github.com/searxng/searxng.git
synced 2026-05-22 19:04:32 +02:00
aeec048b8d
Bumps [docker/scout-action](https://github.com/docker/scout-action) from 1.20.4 to 1.21.0. - [Release notes](https://github.com/docker/scout-action/releases) - [Commits](https://github.com/docker/scout-action/compare/bacf462e8d090c09660de30a6ccc718035f961e3...cd72f264beff1cd72735de31148b9d3244a0234a) --- updated-dependencies: - dependency-name: docker/scout-action dependency-version: 1.21.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: "false"
|
|
|
|
- name: Sync GHCS from Docker Scout
|
|
uses: docker/scout-action@cd72f264beff1cd72735de31148b9d3244a0234a # v1.21.0
|
|
with:
|
|
organization: "searxng"
|
|
dockerhub-user: "${{ secrets.DOCKER_USER }}"
|
|
dockerhub-password: "${{ secrets.DOCKER_TOKEN }}"
|
|
image: "registry://ghcr.io/searxng/searxng:latest"
|
|
command: "cves"
|
|
sarif-file: "./scout.sarif"
|
|
exit-code: "false"
|
|
write-comment: "false"
|
|
|
|
- name: Upload SARIFs
|
|
uses: github/codeql-action/upload-sarif@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
|
|
with:
|
|
sarif_file: "./scout.sarif"
|