From 78828e3ded8412aa7b17f05558590177deda1d4a Mon Sep 17 00:00:00 2001 From: Adin Schmahmann Date: Thu, 14 Apr 2022 14:52:06 -0400 Subject: [PATCH] update to Go 1.17.9 --- .circleci/main.yml | 10 +++++----- Dockerfile | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/main.yml b/.circleci/main.yml index 6d7dcecfaa78..ab7bc622b2a7 100644 --- a/.circleci/main.yml +++ b/.circleci/main.yml @@ -36,7 +36,7 @@ default_environment: &default_environment executors: golang: docker: - - image: cimg/go:1.17.8 + - image: cimg/go:1.17.9 working_directory: ~/ipfs/go-ipfs environment: <<: *default_environment @@ -61,7 +61,7 @@ executors: E2E_IPFSD_TYPE: go dockerizer: docker: - - image: cimg/go:1.17.8 + - image: cimg/go:1.17.9 environment: IMAGE_NAME: ipfs/go-ipfs WIP_IMAGE_TAG: wip @@ -161,8 +161,8 @@ jobs: - run: sudo apt update - run: | mkdir ~/localgo && cd ~/localgo - wget https://golang.org/dl/go1.17.8.linux-amd64.tar.gz - tar xfz go1.17.8.linux-amd64.tar.gz + wget https://golang.org/dl/go1.17.9.linux-amd64.tar.gz + tar xfz go1.17.9.linux-amd64.tar.gz echo "export PATH=$(pwd)/go/bin:\$PATH" >> ~/.bashrc - run: go version - run: sudo apt install socat net-tools @@ -228,7 +228,7 @@ jobs: - *store_gomod interop: docker: - - image: cimg/go:1.17.8-node + - image: cimg/go:1.17.9-node parallelism: 4 resource_class: large steps: diff --git a/Dockerfile b/Dockerfile index 239a7fa6d615..500b3177a60c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Note: when updating the go minor version here, also update the go-channel in snap/snapcraft.yml -FROM golang:1.17.8-buster +FROM golang:1.17.9-buster LABEL maintainer="Steven Allen " # Install deps