From 34dde00a6b186a3b41c38011ca5c87b96d627478 Mon Sep 17 00:00:00 2001 From: Brandon Sprague Date: Mon, 29 Apr 2024 06:59:26 -0700 Subject: [PATCH] Update CI to Go 1.22 --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 80684c4..07eabae 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,12 +7,12 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: - go-version: "1.20" + go-version: "1.22" - name: Verify dependencies run: go mod verify @@ -27,4 +27,4 @@ jobs: run: go test -race -vet=off ./... - name: golangci-lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v5