Default to latest patch version in CI, bump actions

1. Stop pinning patch version... IIUC the docs correctly, this will let it use whatever the latest patch version is.
2. Bump the actions versions `v3`. From a quick skim, none of the new changes really affect this workflow so it's safe to update. And since this is just CI, it should be quickly obvious if something is broken.
This commit is contained in:
Jeff Widman 2022-07-23 21:34:39 -07:00 committed by Ralph Caraveo
parent 29b450944d
commit 41eeb0673a
1 changed files with 3 additions and 3 deletions

View File

@ -4,17 +4,17 @@ jobs:
test:
strategy:
matrix:
go-version: [1.18.0]
go-version: [1.18]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
stable: false
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Test
run: |
go test -v -race ./...