Skip to content

Commit

Permalink
Merge pull request #264 from dsgnr/code_ql_branch
Browse files Browse the repository at this point in the history
Update CodeQL workflow
  • Loading branch information
dsgnr authored Nov 18, 2024
2 parents 9bedc34 + 4270b07 commit 130da13
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ name: "CodeQL"

on:
push:
branches: [ master ]
branches:
- devel
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
branches:
- devel
schedule:
- cron: '15 12 * * 0'

Expand All @@ -21,19 +22,23 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
language:
- python
- javascript-typescript

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v3

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

0 comments on commit 130da13

Please sign in to comment.