From e39beed72864dc19e816e4754a942cf5dd4bf583 Mon Sep 17 00:00:00 2001 From: Scott Francis Date: Fri, 27 Sep 2024 09:59:30 -0400 Subject: [PATCH] Fix CI build --- Makefile | 5 ++++- go.mod | 4 +--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 1a4547f..5de1a16 100644 --- a/Makefile +++ b/Makefile @@ -23,9 +23,12 @@ dist: .PHONY: setup setup: go mod download - go mod tidy go install github.com/go-bindata/go-bindata/v3/...@v3.1.3 +.PHONY: tidy +tidy: + go mod tidy + .PHONY: test test: go test -tags debug -v ./... diff --git a/go.mod b/go.mod index bcc7b9f..122dd96 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/csfrancis/proxytv -go 1.22.0 - -toolchain go1.22.5 +go 1.23.0 require ( github.com/creasty/defaults v1.8.0