Skip to content

Commit ac31b34

Browse files
committed
Installs go before CodeQL analysis.
1 parent 07f86ff commit ac31b34

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci-actions.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,13 @@ jobs:
124124
steps:
125125
- name: Checkout repository
126126
uses: actions/checkout@v4
127+
- name: Setup Go
128+
uses: actions/setup-go@v5
129+
with:
130+
go-version: '1.22'
127131
- name: Initialize CodeQL
128132
uses: github/codeql-action/init@v3
129133
with:
130134
languages: go
131135
- name: Perform CodeQL Analysis
132136
uses: github/codeql-action/analyze@v3
133-
with:
134-
category: "/language:go"

0 commit comments

Comments
 (0)