Skip to content

Bump super-linter/super-linter from 6.6.0 to 6.7.0 #246

Bump super-linter/super-linter from 6.6.0 to 6.7.0

Bump super-linter/super-linter from 6.6.0 to 6.7.0 #246

Workflow file for this run

---
name: "codeql"
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
- cron: '39 20 * * 3'
permissions: { }
jobs:
analyze:
name: Analyze
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ['go']
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.7
- name: Setup go
uses: actions/setup-go@v5.0.2
with:
go-version-file: 'go.mod'
check-latest: true
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"