Skip to content

Commit

Permalink
Bump baseline Go versions to 1.18.
Browse files Browse the repository at this point in the history
Update actions to v3.
Go vet is commented out due to false positives in golang/go#41205.

PiperOrigin-RevId: 492508300
  • Loading branch information
ItsMattL authored and copybara-github committed Dec 7, 2022
1 parent 283565a commit 8d2b451
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/go_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@ jobs:
runs-on: windows-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.18.x

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

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

- name: Test
run: go test -v ./...
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/certtostore

go 1.17
go 1.18

require (
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d
Expand Down

0 comments on commit 8d2b451

Please sign in to comment.