Skip to content

Commit 8d2b451

Browse files
ItsMattLcopybara-github
authored andcommitted
Bump baseline Go versions to 1.18.
Update actions to v3. Go vet is commented out due to false positives in golang/go#41205. PiperOrigin-RevId: 492508300
1 parent 283565a commit 8d2b451

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/go_tests.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@ jobs:
55
runs-on: windows-latest
66
steps:
77
- name: Install Go
8-
uses: actions/setup-go@v2
8+
uses: actions/setup-go@v3
99
with:
1010
go-version: 1.18.x
1111

1212
- name: Check out code into the Go module directory
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414

15-
- name: Download Dependencies
16-
run: go get -v -t -d ./...
15+
# false positives: golang/go#41205
16+
#- name: Run vet
17+
# run: go vet ./...
1718

1819
- name: Test
1920
run: go test -v ./...

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/google/certtostore
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d

0 commit comments

Comments
 (0)