Files
trezor-suite/.github/workflows/codeql_analysis.yml
Carlos Garcia Ortiz karliatto 1abb830289 chore(github): actions to use latest version
We are getting many deprecation warnings in actions since GitHub
is going to use node 20 as
https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
2024-02-20 15:45:51 +01:00

37 lines
760 B
YAML

name: "[Check] CodeQL check"
on:
push:
branches: [develop, release/*]
pull_request:
branches: [develop]
schedule:
- cron: "34 02 * * 2"
jobs:
code-ql-analyze:
name: Analyze with CodeQL
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ["javascript"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2