Skip to content

Commit

Permalink
Add security workflow (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
raviqqe authored Dec 19, 2022
1 parent 46612c7 commit 815a344
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/security.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: security
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 0 * * *"
jobs:
codeql:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- uses: actions/checkout@v3
- uses: github/codeql-action/init@v2
- uses: github/codeql-action/autobuild@v2
- uses: github/codeql-action/analyze@v2

0 comments on commit 815a344

Please sign in to comment.