Skip to content

deps: bump the minor-and-patch group with 13 updates #482

deps: bump the minor-and-patch group with 13 updates

deps: bump the minor-and-patch group with 13 updates #482

Workflow file for this run

name: CodeQL Analysis
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 6 * * 1' # Monday 06:00 UTC
permissions:
contents: read
security-events: write
jobs:
ci-filter:
uses: ./.github/workflows/ci-filter.yml
analyze:
needs: [ci-filter]
name: Analyze Go
runs-on: ubuntu-latest
if: >-
github.event_name == 'schedule' ||
(
needs.ci-filter.outputs.skip_codeql != 'true' &&
!(
github.event_name == 'pull_request' &&
contains(github.event.pull_request.labels.*.name, 'release:skip')
)
)
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: go
queries: security-extended
- name: Build
run: go build ./...
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:go"