Merge pull request #4624 from gabriellavengeo/patch-1

Create codeql.yml
This commit is contained in:
Sebastiaan van Stijn 2023-10-26 16:51:12 +02:00 committed by GitHub
commit a6351d0cd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 1 deletions

View File

@ -1,6 +1,15 @@
name: codeql name: codeql
on: on:
push:
branches:
- 'master'
- '[0-9]+.[0-9]+'
tags:
- 'v*'
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
schedule: schedule:
# ┌───────────── minute (0 - 59) # ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23) # │ ┌───────────── hour (0 - 23)
@ -15,7 +24,13 @@ on:
jobs: jobs:
codeql: codeql:
runs-on: ubuntu-20.04 runs-on: 'ubuntu-latest'
timeout-minutes: 360
permissions:
actions: read
contents: read
security-events: write
steps: steps:
- -
name: Checkout name: Checkout
@ -27,6 +42,11 @@ jobs:
if: ${{ github.event_name == 'pull_request' }} if: ${{ github.event_name == 'pull_request' }}
run: | run: |
git checkout HEAD^2 git checkout HEAD^2
-
name: Update Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- -
name: Initialize CodeQL name: Initialize CodeQL
uses: github/codeql-action/init@v2 uses: github/codeql-action/init@v2
@ -38,3 +58,5 @@ jobs:
- -
name: Perform CodeQL Analysis name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2 uses: github/codeql-action/analyze@v2
with:
category: "/language:go"