mirror of
https://github.com/Steffo99/cfig.git
synced 2024-11-24 08:54:20 +00:00
42b182e515
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2 to 3. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v2...v3) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
630 B
YAML
29 lines
630 B
YAML
name: "Periodic analysis"
|
|
|
|
on:
|
|
schedule:
|
|
# Change this in your project to a random time.
|
|
# Every monday at 06:09 UTC
|
|
- cron: "9 6 * * 1"
|
|
|
|
jobs:
|
|
codeql:
|
|
name: "🔍 Perform CodeQL analysis"
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
security-events: write
|
|
actions: read
|
|
contents: read
|
|
|
|
steps:
|
|
- name: "⬇️ Checkout repository"
|
|
uses: actions/checkout@v3
|
|
|
|
- name: "🔨 Initialize CodeQL"
|
|
uses: github/codeql-action/init@v3
|
|
with:
|
|
languages: python
|
|
|
|
- name: "🔍 Perform CodeQL analysis"
|
|
uses: github/codeql-action/analyze@v3
|