Skip to content

.github: update codeql-analysis.yml #262

.github: update codeql-analysis.yml

.github: update codeql-analysis.yml #262

Workflow file for this run

# Copied from https://github.com/fxamacker/cbor
name: "CodeQL"
# Remove default permissions
permissions: {}
on:
push:
# Run on push for all branches.
pull_request:
# Run on pull request for all branches.
schedule:
- cron: '30 12 * * *' # Run daily at 12:30 UTC / 7:30 AM Central.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'go' ]
steps:
- name: Checkout repository
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # v3.26.11
with:
languages: ${{ matrix.language }}
# Don't need setup-go because default version of Go is updated regularly in ubuntu-latest.
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # v3.26.11
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@6db8d6351fd0be61f9ed8ebd12ccd35dcec51fea # v3.26.11