Skip to content

Update RELEASE_PROCESS.md #351

Update RELEASE_PROCESS.md

Update RELEASE_PROCESS.md #351

Workflow file for this run

name: CodeQL
on:
push:
branches:
- main
- release-*
- fix-codeql-*
workflow_dispatch: {}
concurrency:
group: codeql-${{ github.ref }}-1
cancel-in-progress: true
permissions:
actions: read
contents: read
jobs:
detect-noop:
runs-on: ubuntu-22.04
outputs:
noop: ${{ steps.noop.outputs.should_skip }}
steps:
- name: Detect No-op Changes
id: noop
uses: fkirc/skip-duplicate-actions@v5.2.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
paths_ignore: '["**.md", "**.png", "**.jpg"]'
do_not_skip: '["workflow_dispatch", "schedule", "push"]'
concurrent_skipping: false
analyze:
runs-on: ubuntu-22.04
permissions:
security-events: write
needs: detect-noop
if: needs.detect-noop.outputs.noop != 'true'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
# Custom Go version because of: https://github.com/github/codeql/issues/13992#issuecomment-1711721716
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2