ci: wire org-wide security-scan + dependabot + CODEOWNERS #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copyright 2026 ResQ Software | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # | ||
| # Thin caller for the org-wide reusable security-scan workflow in | ||
| # resq-software/.github. | ||
| name: security | ||
| on: | ||
| push: | ||
| branches: [main, master] | ||
| pull_request: | ||
| schedule: | ||
| - cron: '17 6 * * 1' | ||
| workflow_dispatch: | ||
| permissions: | ||
| contents: read | ||
| security-events: write | ||
| pull-requests: read | ||
| jobs: | ||
| scan: | ||
| uses: resq-software/.github/.github/workflows/security-scan.yml@main | ||
|
Check failure on line 24 in .github/workflows/security.yml
|
||
| with: | ||
| languages: '["csharp","actions"]' | ||
| secrets: inherit | ||