🔁 Bump typescript-eslint
From 7.10.0
to 7.11.0
#64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🔍️ CodeQL | |
on: [push, pull_request, workflow_dispatch] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
analyse: | |
runs-on: ${{ matrix.os }} | |
permissions: | |
# The permissions set for `actions` and `contents` are only | |
# required for workflows in private repositories. | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
language: | |
- javascript-typescript | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Initialise CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
queries: +security-and-quality | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v3 | |
- name: Perform CodeQL analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{ matrix.language }}" |