From 39b1d37b3ddf69ff6222d10903cc4734ae5dd725 Mon Sep 17 00:00:00 2001 From: Gabriela Georgieva Date: Wed, 25 Oct 2023 12:22:08 +0200 Subject: [PATCH] Update CodeQL workflow Signed-off-by: Gabriela Georgieva --- .../{codeql-analysis.yml => codeql.yml} | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) rename .github/workflows/{codeql-analysis.yml => codeql.yml} (70%) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql.yml similarity index 70% rename from .github/workflows/codeql-analysis.yml rename to .github/workflows/codeql.yml index 2309da57bd..84486aa30f 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql.yml @@ -1,6 +1,15 @@ name: codeql 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: # ┌───────────── minute (0 - 59) # │ ┌───────────── hour (0 - 23) @@ -15,7 +24,13 @@ on: jobs: codeql: - runs-on: ubuntu-20.04 + runs-on: 'ubuntu-latest' + timeout-minutes: 360 + permissions: + actions: read + contents: read + security-events: write + steps: - name: Checkout @@ -27,6 +42,11 @@ jobs: if: ${{ github.event_name == 'pull_request' }} run: | git checkout HEAD^2 + - + name: Update Go + uses: actions/setup-go@v4 + with: + go-version: '1.21' - name: Initialize CodeQL uses: github/codeql-action/init@v2 @@ -38,3 +58,5 @@ jobs: - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v2 + with: + category: "/language:go"