mirror of
https://github.com/searxng/searxng.git
synced 2025-12-22 19:50:00 +00:00
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.31.5 to 4.31.6.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](fdbfb4d275...fe4161a26a)
---
updated-dependencies:
- dependency-name: github/codeql-action
dependency-version: 4.31.6
dependency-type: direct:production
update-type: version-update:semver-patch
...
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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
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@fe4161a26a8629af62121b670040955b330f9af2 # v4.31.6
|
|
with:
|
|
sarif_file: "./scout.sarif"
|