We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 283565a commit 8d2b451Copy full SHA for 8d2b451
.github/workflows/go_tests.yml
@@ -5,15 +5,16 @@ jobs:
5
runs-on: windows-latest
6
steps:
7
- name: Install Go
8
- uses: actions/setup-go@v2
+ uses: actions/setup-go@v3
9
with:
10
go-version: 1.18.x
11
12
- name: Check out code into the Go module directory
13
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
14
15
- - name: Download Dependencies
16
- run: go get -v -t -d ./...
+ # false positives: golang/go#41205
+ #- name: Run vet
17
+ # run: go vet ./...
18
19
- name: Test
20
run: go test -v ./...
go.mod
@@ -1,6 +1,6 @@
1
module github.com/google/certtostore
2
3
-go 1.17
+go 1.18
4
require (
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d
0 commit comments