Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/github_actions/actions/checkout-3
Browse files Browse the repository at this point in the history
  • Loading branch information
carlsonp authored Feb 11, 2024
2 parents 59bae3e + d6ddb1e commit 82695b3
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 18 deletions.
18 changes: 0 additions & 18 deletions .github/dependabot.yml

This file was deleted.

41 changes: 41 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: "CodeQL"

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: "55 8 * * 6"

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ javascript ]

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
queries: +security-and-quality

- name: Autobuild
uses: github/codeql-action/autobuild@v2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{ matrix.language }}"

0 comments on commit 82695b3

Please sign in to comment.