mirror of
https://github.com/mudler/LocalAI.git
synced 2026-06-22 23:58:51 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
1.3 KiB
YAML
34 lines
1.3 KiB
YAML
name: "Security Scan"
|
|
|
|
# Run workflow each time code is pushed to your repository and on a schedule.
|
|
# The scheduled workflow runs every at 00:00 on Sunday UTC time.
|
|
on:
|
|
push:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
GO111MODULE: on
|
|
steps:
|
|
- name: Checkout Source
|
|
uses: actions/checkout@v7
|
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
|
- name: Run Gosec Security Scanner
|
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
|
uses: securego/gosec@v2.27.1
|
|
with:
|
|
# we let the report trigger content trigger a failure using the GitHub Security features.
|
|
# backend/go/supertonic is excluded: it vendors upstream supertone-inc/supertonic
|
|
# (helper.go), whose findings (G304 model-file loads, G404 math/rand for flow-matching
|
|
# noise, G104 unhandled errors) are inherent to that upstream code, not ours to rewrite.
|
|
args: '-no-fail -exclude-dir=backend/go/supertonic -fmt sarif -out results.sarif ./...'
|
|
- name: Upload SARIF file
|
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
|
uses: github/codeql-action/upload-sarif@v4
|
|
with:
|
|
# Path to SARIF file relative to the root of the repository
|
|
sarif_file: results.sarif
|