This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
Fix BoolOpts for ProvisionToken #998
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: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- 'rfd/**' | |
- '**.md' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'go', 'javascript' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
cache: false | |
go-version-file: go.mod | |
if: ${{ matrix.language == 'go' }} | |
- name: Initialize the CodeQL tools for scanning | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
timeout-minutes: 5 | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v2 | |
timeout-minutes: 30 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
with: | |
category: "/language:${{matrix.language}}" | |
timeout-minutes: 10 |