From af56088cbcb6972ef5421a948275f08cda50136b Mon Sep 17 00:00:00 2001 From: Nicholas Wiersma Date: Mon, 12 Feb 2024 07:10:35 +0200 Subject: [PATCH] chore: support go 1.22 (#46) --- .github/workflows/test.yml | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6404dc3..8ac19c0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,10 +10,10 @@ jobs: strategy: matrix: - go-version: [ "1.20", "1.21" ] + go-version: [ "1.21", "1.22" ] runs-on: ubuntu-latest env: - GOLANGCI_LINT_VERSION: v1.54.2 + GOLANGCI_LINT_VERSION: v1.56.1 steps: - name: Install Go diff --git a/go.mod b/go.mod index 87da471..f963093 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hamba/testutils -go 1.20 +go 1.21 require ( github.com/ryanuber/go-glob v1.0.0