From af9dc4604ad1d8c0f7fd19f0f6b426158852beec Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 17 Jan 2024 01:58:37 -0500 Subject: [PATCH] fix: remove go.work file earlier --- .github/workflows/codeql-analysis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 404b4cd5c..d6eb956ec 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -44,6 +44,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + # workaround for https://github.com/github/codeql/issues/14235 + - name: Remove go.work file + run: rm go.work + # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v3 @@ -66,9 +70,5 @@ jobs: # and modify them (or add more) to build your code if your project # uses a compiled language - # workaround for https://github.com/github/codeql/issues/14235 - - name: Remove go.work file - run: rm go.work - - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3