Skip to content

Fix: Various impediments and failing tests in GitHub Actions #1786

Fix: Various impediments and failing tests in GitHub Actions

Fix: Various impediments and failing tests in GitHub Actions #1786

Workflow file for this run

name: CodeQL Advanced
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: "22 2 * * 4"
jobs:
analyze:
name: Analyze ${{ matrix.language }}
runs-on: ubuntu-latest
permissions:
security-events: write
actions: read
contents: read
packages: read
strategy:
fail-fast: false
matrix:
include:
- language: actions
build-mode: none
- language: python
build-mode: none
- language: javascript-typescript
build-mode: none
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Initialize CodeQL tools for scanning of ${{ matrix.language }}
uses: github/codeql-action/init@v4.37.3
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v4.37.3
- name: Perform CodeQL analysis of ${{ matrix.language }}
uses: github/codeql-action/analyze@v4.37.3
with:
category: "/language:${{ matrix.language }}"