Skip to content

ci(deps): bump github/codeql-action from 3.26.7 to 3.26.8 in /.github/workflows #12

ci(deps): bump github/codeql-action from 3.26.7 to 3.26.8 in /.github/workflows

ci(deps): bump github/codeql-action from 3.26.7 to 3.26.8 in /.github/workflows #12

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
---
name: 🛡️ CodeQL
on:
push:
branches: ["main"]
paths-ignore:
- "*.md"
- "*.md.tmpl"
- "*.tf"
pull_request:
branches: ["main"]
types:
- opened
- reopened
- synchronize
- ready_for_review
paths-ignore:
- "*.md"
- "*.md.tmpl"
- "*.tf"
schedule:
- cron: "32 19 * * 2"
workflow_dispatch:
concurrency:
group: ${{ format('{0}-{1}-{2}-{3}-{4}', github.workflow, github.event_name, github.ref, github.base_ref || null, github.head_ref || null) }}
cancel-in-progress: true
permissions:
contents: read
jobs:
codeql:
name: 🩺 CodeQL Analysis
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
# required for all workflows
security-events: write
# only required for workflows in private repositories
actions: read
contents: read
strategy:
fail-fast: false
matrix:
language: ["go"]
steps:
- name: ⤵️ Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: 🚧 Setup Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version-file: go.mod
cache: false
- name: 🚧 Setup Task
uses: arduino/setup-task@b91d5d2c96a56797b48ac1e0e89220bf64044611 # v2.0.0
with:
repo-token: ${{ github.token }}
- name: 💫 Initialize CodeQL
uses: github/codeql-action/init@294a9d92911152fe08befb9ec03e240add280cb3 # v3.26.8
with:
languages: ${{ matrix.language }}
queries: security-extended,security-and-quality
- name: 🔨 Setup tools
run: task install:goreleaser
- name: 🏗️ Build binary
run: task build
- name: 🩺 Perform CodeQL Analysis
uses: github/codeql-action/analyze@294a9d92911152fe08befb9ec03e240add280cb3 # v3.26.8
with:
category: "/language:${{matrix.language}}"
upload: never
output: codeql-results
- name: 📤 Upload CodeQL result
uses: github/codeql-action/upload-sarif@294a9d92911152fe08befb9ec03e240add280cb3 # v3.26.8
with:
sarif_file: codeql-results
wait-for-processing: true