Re-enable go and zig actions in codeql pipeline (#990)

This was causing the builds for the javascript-typescript job to actually run longer because Go was still required to generate the bindings
This commit is contained in:
Evan Simkowitz 2024-10-08 17:52:50 -04:00 committed by GitHub
parent e0ad873b45
commit b8e03e9628
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -65,16 +65,14 @@ jobs:
corepack enable
yarn install
- name: Setup Go (Go only)
if: matrix.language == 'go'
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{env.GO_VERSION}}
cache-dependency-path: |
go.sum
# We use Zig instead of glibc for cgo compilation as it is more-easily statically linked
- name: Setup Zig (Go only)
if: matrix.language == 'go'
- name: Setup Zig
run: sudo snap install zig --classic --beta
# Initializes the CodeQL tools for scanning.