Skip to content

deps: bump actions/configure-pages from 4 to 5 (#202) #582

deps: bump actions/configure-pages from 4 to 5 (#202)

deps: bump actions/configure-pages from 4 to 5 (#202) #582

Workflow file for this run

name: "CodeQL"
on:
merge_group:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
analyze:
name: Analyze
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
language: [go]
go-version: ["1.21"]
runs-on: ${{ matrix.os }}
env:
IS_NOT_MERGE_GROUP: ${{ github.event_name != 'merge_group' }}
timeout-minutes: 90
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Setup go
if: env.IS_NOT_MERGE_GROUP
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout repository
if: env.IS_NOT_MERGE_GROUP
uses: actions/checkout@v4
- name: Initialize CodeQL
if: env.IS_NOT_MERGE_GROUP
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
if: env.IS_NOT_MERGE_GROUP
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
if: env.IS_NOT_MERGE_GROUP
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"