Skip to content

fix(security): replace InsecureIgnoreHostKey with TOFU verification in browserprov #344

fix(security): replace InsecureIgnoreHostKey with TOFU verification in browserprov

fix(security): replace InsecureIgnoreHostKey with TOFU verification in browserprov #344

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "main" ]
paths-ignore:
- 'scripts/**'
pull_request:
branches: [ "main" ]
paths-ignore:
- 'scripts/**'
schedule:
# Run at 6:00 UTC every Monday
- cron: '0 6 * * 1'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
timeout-minutes: 360
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'go', 'javascript-typescript' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
if: matrix.language == 'go'
uses: actions/setup-go@v5
with:
go-version-file: 'control-plane/go.mod'
- name: Set up Node.js
if: matrix.language == 'javascript-typescript'
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: 'control-plane/frontend/package-lock.json'
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: security-extended,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}}"