Skip to content

fix: pass gitleaks --log-opts without a shell so Windows keeps the caret #10837

fix: pass gitleaks --log-opts without a shell so Windows keeps the caret

fix: pass gitleaks --log-opts without a shell so Windows keeps the caret #10837

Workflow file for this run

name: 'CodeQL'
on:
push:
branches: ['main']
pull_request:
branches: ['main']
schedule:
- cron: '25 10 * * 1'
permissions:
contents: read
jobs:
analyze:
name: Analyze
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
security-events: write
strategy:
fail-fast: false
matrix:
language: ['javascript-typescript']
steps:
- name: Harden Runner
uses: step-security/harden-runner@b09bb98e06d4d774595224525879c09bc6e98c40 # v2.20.1
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Initialize CodeQL
uses: github/codeql-action/init@7d9249f5a57288b8a472ddd9cc3ece1921f7dc38 # ratchet:github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@7d9249f5a57288b8a472ddd9cc3ece1921f7dc38 # ratchet:github/codeql-action/autobuild@v4
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@7d9249f5a57288b8a472ddd9cc3ece1921f7dc38 # ratchet:github/codeql-action/analyze@v4
with:
category: '/language:${{matrix.language}}'