From a8eaba85add41a6233f0ec91acd062f944dff724 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Wed, 20 Jul 2022 11:07:00 -0700 Subject: [PATCH] Attempt to fix failing CodeQL Github action job The process being killed after 30m. If that's caused by the step timeout, this change should fix it --- .github/workflows/codeql-analysis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index e2df6dde9b61..04ad884abcbb 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -2,7 +2,7 @@ name: "CodeQL Analysis" on: push: - branches: [ main ] + branches: [main] jobs: CodeQL-Build: @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 - + - name: Set up Go uses: actions/setup-go@v3 with: @@ -28,3 +28,4 @@ jobs: - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v2 + timeout-minutes: 60