fix: remove go.work file earlier

This commit is contained in:
Jose Diaz-Gonzalez
2024-01-17 01:58:37 -05:00
committed by GitHub
parent 9b4a376f68
commit af9dc4604a

View File

@@ -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