Skip to content

Merge pull request #162 from grendel-consulting/renovate/github-codeq… #431

Merge pull request #162 from grendel-consulting/renovate/github-codeq…

Merge pull request #162 from grendel-consulting/renovate/github-codeq… #431

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
paths-ignore:
- '**/*.md'
schedule:
- cron: '32 07 * * 3'
permissions: {}
jobs:
analyze:
runs-on: ubuntu-latest
timeout-minutes: 360
permissions:
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
include:
- language: typescript
build-mode: none
steps:
- name: Harden Runner
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
api.github.com:443
github.com:443
objects.githubusercontent.com:443
uploads.github.com:443
- name: Checkout Repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Initialize CodeQL
uses: github/codeql-action/init@dd196fa9ce80b6bacc74ca1c32bd5b0ba22efca7 # v3.28.3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
queries: security-extended
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@dd196fa9ce80b6bacc74ca1c32bd5b0ba22efca7 # v3.28.3
with:
category: "/language:${{matrix.language}}"