From 6c3053834938da8d7448961945d746be513e8019 Mon Sep 17 00:00:00 2001 From: Chris Hager Date: Thu, 15 Feb 2024 15:24:50 +0100 Subject: [PATCH] Go 1.22 --- .github/workflows/checks.yml | 10 +++++----- go.mod | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index a5a293a..6075791 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: ^1.21 + go-version: ^1.22 id: go - name: Check out code into the Go module directory @@ -30,20 +30,20 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: ^1.21 + go-version: ^1.22 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Install gofumpt - run: go install mvdan.cc/gofumpt@v0.4.0 + run: go install mvdan.cc/gofumpt@v0.6.0 - name: Install staticcheck - run: go install honnef.co/go/tools/cmd/staticcheck@v0.4.2 + run: go install honnef.co/go/tools/cmd/staticcheck@v0.4.6 - name: Install golangci-lint - run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.54.2 + run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.56.1 - name: Lint run: make lint diff --git a/go.mod b/go.mod index a3beb28..adf0e54 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/flashbots/mempool-dumpster -go 1.21 +go 1.22 require ( github.com/HdrHistogram/hdrhistogram-go v1.1.2