File tree Expand file tree Collapse file tree 4 files changed +15
-7
lines changed Expand file tree Collapse file tree 4 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 7
7
- .github/workflows/go-tests-other-os.yml
8
8
- .github/actions/**
9
9
- codeql-workspace.yml
10
+ env :
11
+ GO_VERSION : ' ~1.22.0'
10
12
11
13
permissions :
12
14
contents : read
@@ -16,10 +18,10 @@ jobs:
16
18
name : Test MacOS
17
19
runs-on : macos-latest
18
20
steps :
19
- - name : Set up Go
21
+ - name : Set up Go ${{ env.GO_VERSION }}
20
22
uses : actions/setup-go@v5
21
23
with :
22
- go-version-file : go/test-runtime-version/go.work
24
+ go-version : ${{ env.GO_VERSION }}
23
25
cache : false
24
26
id : go
25
27
@@ -53,10 +55,10 @@ jobs:
53
55
name : Test Windows
54
56
runs-on : windows-latest-xl
55
57
steps :
56
- - name : Set up Go
58
+ - name : Set up Go ${{ env.GO_VERSION }}
57
59
uses : actions/setup-go@v5
58
60
with :
59
- go-version-file : go/test-runtime-version/go.work
61
+ go-version : ${{ env.GO_VERSION }}
60
62
cache : false
61
63
id : go
62
64
Original file line number Diff line number Diff line change 16
16
- .github/actions/**
17
17
- codeql-workspace.yml
18
18
19
+ env :
20
+ GO_VERSION : ' ~1.22.0'
21
+
19
22
permissions :
20
23
contents : read
21
24
@@ -25,10 +28,10 @@ jobs:
25
28
name : Test Linux (Ubuntu)
26
29
runs-on : ubuntu-latest-xl
27
30
steps :
28
- - name : Set up Go
31
+ - name : Set up Go ${{ env.GO_VERSION }}
29
32
uses : actions/setup-go@v5
30
33
with :
31
- go-version-file : go/test-runtime-version/go.work
34
+ go-version : ${{ env.GO_VERSION }}
32
35
cache : false
33
36
id : go
34
37
Original file line number Diff line number Diff line change
1
+ module github.com/github/codeql-go/ql/test
2
+
3
+ go 1.21
4
+
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments