mirror of
https://github.com/searxng/searxng.git
synced 2025-12-22 19:50:00 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](08c6903cd8...1af3b93b68)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
|
with:
|
|
persist-credentials: "false"
|
|
|
|
- name: Sync GHCS from Docker Scout
|
|
uses: docker/scout-action@f8c776824083494ab0d56b8105ba2ca85c86e4de # v1.18.2
|
|
with:
|
|
organization: "searxng"
|
|
dockerhub-user: "${{ secrets.DOCKERHUB_USERNAME }}"
|
|
dockerhub-password: "${{ secrets.DOCKERHUB_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@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4.31.4
|
|
with:
|
|
sarif_file: "./scout.sarif"
|