Skip to content

Commit

Permalink
Add codeQL workflow (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyanderson authored Sep 1, 2023
1 parent 8a891c2 commit e0cf649
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: 'bundler'
directory: '/'
schedule:
interval: 'daily'
time: '15:00'
timezone: 'UTC'
30 changes: 30 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CodeQL
'on':
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: 43 6 * * 3
workflow_dispatch: null
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
concurrency: ${{ github.workflow }}-${{ matrix.language }}-${{ github.ref }}
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language:
- ruby
steps:
- name: Run Code Scanning
uses: department-of-veterans-affairs/codeql-tools/codeql-analysis@main
with:
language: ${{ matrix.language }}

0 comments on commit e0cf649

Please sign in to comment.