From ecf706a45d6cd5225fbb4502c199f6b198f8abff Mon Sep 17 00:00:00 2001 From: Justin Harringa Date: Wed, 15 Sep 2021 13:02:20 -0700 Subject: [PATCH] Update to go 1.17 in go.mod --- Makefile | 2 +- go.mod | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3558408..0d169d2 100644 --- a/Makefile +++ b/Makefile @@ -29,5 +29,5 @@ clean: local-docker-test: ## Build and run unit tests in docker container like CI without building the container docker run --rm=true -v `pwd`:$(MOUNT_DIR) $(BUILD_CONTAINER) bash -c 'cd $(MOUNT_DIR) && make ci' -local-docker-build: ## Build the container image (which also runs tests) +local-docker-build: ## Build the container image docker build --no-cache -t $(ORG_AND_REPO) . diff --git a/go.mod b/go.mod index ebf5023..0c43ac3 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,9 @@ module github.com/salesforce/ci-result-to-slack -go 1.16 +go 1.17 require ( + github.com/gorilla/websocket v1.4.2 // indirect github.com/kelseyhightower/envconfig v1.4.0 github.com/pkg/errors v0.9.1 // indirect github.com/slack-go/slack v0.9.4