Skip to content

chore: bump actions/setup-go from 6.5.0 to 7.0.0 #209

chore: bump actions/setup-go from 6.5.0 to 7.0.0

chore: bump actions/setup-go from 6.5.0 to 7.0.0 #209

Workflow file for this run

name: CodeQL
on:
pull_request:
paths:
- '.github/workflows/*.yml'
- '**.go'
- 'go.mod'
push:
branches:
- main
permissions: {}
jobs:
analysis:
name: Analysis
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language:
- actions
- go
permissions:
contents: read
security-events: write
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: go.mod
if: matrix.language == 'go'
- uses: github/codeql-action/init@38697555549f1db7851b81482ff19f1fa5c4fedc # v4.34.1
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.language == 'go' && 'manual' || 'none' }}
- run: make build
if: matrix.language == 'go'
- uses: github/codeql-action/analyze@38697555549f1db7851b81482ff19f1fa5c4fedc # v4.34.1
with:
category: /language:${{ matrix.language }}