From 4263c5630632d908e2ef2a72292a6bfba07d6d60 Mon Sep 17 00:00:00 2001 From: Christopher Tarry Date: Wed, 21 Feb 2024 12:02:59 -0500 Subject: [PATCH] update golangci lint --- .github/actions/test/action.yml | 2 +- go.mod | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 173feef1..f6897959 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -8,7 +8,7 @@ runs: shell: bash run: git config --global core.autocrlf false - name: Lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v4 with: skip-cache: true - name: Analyze diff --git a/go.mod b/go.mod index 47fca37b..b8e8840c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module go.sia.tech/explored -go 1.22 +go 1.21.6 + +toolchain go1.22.0 require ( github.com/mattn/go-sqlite3 v1.14.19