Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 27 additions & 16 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: codeql
name: "CodeQL Advanced"

concurrency:
# Run only for most recent commit in PRs but for all tags and commits on main
Expand All @@ -8,18 +8,12 @@ concurrency:

on:
push:
branches:
- 'main'
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches:
- 'main'
branches: [ main ]
schedule:
- cron: '18 13 * * 6'

permissions:
contents: read

jobs:
analyze:
timeout-minutes: 10
Expand All @@ -28,27 +22,44 @@ jobs:
actions: read
contents: read
security-events: write
# Required to fetch internal or private CodeQL packs.
packages: read

strategy:
fail-fast: false
matrix:
language: [ 'go' ]
include:
- language: actions
build-mode: none
- language: go
build-mode: autobuild

steps:
- name: Harden Runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install Go

- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: go.mod

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# 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@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0
uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v3
with:
category: "/language:${{matrix.language}}"
82 changes: 0 additions & 82 deletions .github/workflows/codeql.yml

This file was deleted.

Loading