18
18
show-progress : false
19
19
20
20
- name : Install go
21
- uses : actions/setup-go@v4
21
+ uses : actions/setup-go@v5
22
22
with :
23
23
go-version : ${{ env.GO_VERSION }}
24
24
cache : false
45
45
show-progress : false
46
46
47
47
- name : Install go
48
- uses : actions/setup-go@v4
48
+ uses : actions/setup-go@v5
49
49
with :
50
50
go-version : ${{ env.GO_VERSION }}
51
51
# don't really need to cache Go packages, since go generate doesn't require much.
91
91
show-progress : false
92
92
93
93
- name : Install go
94
- uses : actions/setup-go@v4
94
+ uses : actions/setup-go@v5
95
95
with :
96
96
go-version : ${{ env.GO_VERSION }}
97
97
@@ -102,10 +102,8 @@ jobs:
102
102
- name : Install gotestsum
103
103
run : go install gotest.tools/gotestsum@${{ env.GOTESTSUM_VERSION }}
104
104
105
- # TODO: until https://github.com/golang/go/issues/64028 is backported, skip `TestResolvePath`.
106
- # Functionality is unchanged, but `filepath.EvalSymlinks` cannot handle `\\?\Volume{...}\` prefixes.
107
105
- name : Test repo
108
- run : gotestsum --format standard-verbose --debug -- -gcflags=all=-d=checkptr -race -v -skip "^TestResolvePath$" ./...
106
+ run : gotestsum --format standard-verbose --debug -- -gcflags=all=-d=checkptr -race -v ./...
109
107
110
108
# !NOTE:
111
109
# Fuzzing cannot be run across multiple packages, (ie, `go -fuzz "^Fuzz" ./...` fails).
@@ -125,7 +123,7 @@ jobs:
125
123
show-progress : false
126
124
127
125
- name : Install go
128
- uses : actions/setup-go@v4
126
+ uses : actions/setup-go@v5
129
127
with :
130
128
go-version : ${{ env.GO_VERSION }}
131
129
0 commit comments