mirror of
https://github.com/searxng/searxng.git
synced 2026-05-07 18:03:51 +02:00
0716de6bc8
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.32.4 to 4.32.6. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/89a39a4e59826350b863aa6b6252a07ad50cf83e...0d579ffd059c29b07949a3cce3983f0780820c98) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 4.32.6 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.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@f8c776824083494ab0d56b8105ba2ca85c86e4de # v1.18.2
|
|
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@0d579ffd059c29b07949a3cce3983f0780820c98 # v4.32.6
|
|
with:
|
|
sarif_file: "./scout.sarif"
|