mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-26 09:52:11 +03:00
Bumps [github/codeql-action/analyze](https://github.com/github/codeql-action) from 4.37.1 to 4.37.3.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](7188fc3636...e4fba868fa)
---
updated-dependencies:
- dependency-name: github/codeql-action/analyze
dependency-version: 4.37.3
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>
32 lines
1.3 KiB
YAML
32 lines
1.3 KiB
YAML
name: CodeQL
|
|
# OWNER ACTION REQUIRED before enabling auto-triggers: advanced CodeQL conflicts with
|
|
# GitHub "default setup" — the analyze step fails with "CodeQL analyses from advanced
|
|
# configurations cannot be processed when the default setup is enabled". Switch repo
|
|
# Settings → Code security → CodeQL from Default to Advanced, THEN restore the
|
|
# push/pull_request/schedule triggers below. Until then this only runs on manual dispatch
|
|
# so it never produces a red check on PRs. (The codeqlAlerts ratchet keeps working via the
|
|
# default setup's alerts in the meantime.)
|
|
on:
|
|
workflow_dispatch:
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
analyze:
|
|
name: Analyze (javascript-typescript)
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
security-events: write
|
|
actions: read
|
|
contents: read
|
|
steps:
|
|
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
persist-credentials: false
|
|
- uses: github/codeql-action/init@7188fc363630916deb702c7fdcf4e481b751f97a # v4.37.1
|
|
with:
|
|
languages: javascript-typescript
|
|
queries: security-extended
|
|
- uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
|
|
with:
|
|
category: "/language:javascript-typescript"
|