From ea9c22130bd579bb13d2c29e091be09441bd73bf Mon Sep 17 00:00:00 2001 From: Antonio Navarro Perez Date: Tue, 23 Aug 2022 10:10:57 +0200 Subject: [PATCH] chore: bump Go version to 1.18.5 Signed-off-by: Antonio Navarro Perez --- .circleci/main.yml | 10 +++++----- Dockerfile | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/main.yml b/.circleci/main.yml index 0a7a303d94e..932d69ab09f 100644 --- a/.circleci/main.yml +++ b/.circleci/main.yml @@ -37,7 +37,7 @@ default_environment: &default_environment executors: golang: docker: - - image: cimg/go:1.18.3 + - image: cimg/go:1.18.5 working_directory: ~/ipfs/kubo environment: <<: *default_environment @@ -62,7 +62,7 @@ executors: E2E_IPFSD_TYPE: go dockerizer: docker: - - image: cimg/go:1.18.3 + - image: cimg/go:1.18.5 environment: IMAGE_NAME: ipfs/kubo WIP_IMAGE_TAG: wip @@ -156,8 +156,8 @@ jobs: - run: sudo apt update - run: | mkdir ~/localgo && cd ~/localgo - wget https://golang.org/dl/go1.18.3.linux-amd64.tar.gz - tar xfz go1.18.3.linux-amd64.tar.gz + wget https://golang.org/dl/go1.18.5.linux-amd64.tar.gz + tar xfz go1.18.5.linux-amd64.tar.gz echo "export PATH=$(pwd)/go/bin:\$PATH" >> ~/.bashrc - run: go version - run: sudo apt install socat net-tools @@ -223,7 +223,7 @@ jobs: - *store_gomod interop: docker: - - image: cimg/go:1.18.3-node + - image: cimg/go:1.18.5-node parallelism: 4 resource_class: large steps: diff --git a/Dockerfile b/Dockerfile index a3f223ccc27..8a9a802fb19 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.18.3-buster +FROM golang:1.18.5-buster LABEL maintainer="Steven Allen " # Install deps