Skip to content

Commit

Permalink
chore(deps): upgrade to Go 1.21.6 (#3005)
Browse files Browse the repository at this point in the history
Supersedes #2997 and
#2998
  • Loading branch information
rootulp authored Jan 12, 2024
1 parent 03aa13a commit 37a3a7d
Show file tree
Hide file tree
Showing 15 changed files with 90 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
- cron: '24 20 * * 4'

env:
GO_VERSION: '1.21.5'
GO_VERSION: '1.21.6'

jobs:
analyze:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/govulncheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

env:
GO_VERSION: '1.21.5'
GO_VERSION: '1.21.6'

jobs:
govulncheck:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_call:

env:
GO_VERSION: '1.21.5'
GO_VERSION: '1.21.6'

jobs:
golangci-lint:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:

env:
GO_VERSION: '1.21.5'
GO_VERSION: '1.21.6'

jobs:
test-e2e:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_call:

env:
GO_VERSION: '1.21.5'
GO_VERSION: '1.21.6'

jobs:
test-short:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# stage 1 Generate celestia-appd Binary
FROM --platform=$BUILDPLATFORM docker.io/golang:1.21.5-alpine3.18 as builder
FROM --platform=$BUILDPLATFORM docker.io/golang:1.21.6-alpine3.18 as builder

ARG TARGETOS
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ DOCKER_PROTO_BUILDER := docker run -v $(shell pwd):/workspace --workdir /workspa
PROJECTNAME=$(shell basename "$(PWD)")
HTTPS_GIT := https://github.com/celestiaorg/celestia-app.git
PACKAGE_NAME := github.com/celestiaorg/celestia-app
GOLANG_CROSS_VERSION ?= v1.21.5
GOLANG_CROSS_VERSION ?= v1.21.6

# process linker flags
ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=celestia-app \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ node | | | |

### Source

1. [Install Go](https://go.dev/doc/install) 1.21.5
1. [Install Go](https://go.dev/doc/install) 1.21.6
1. Clone this repo
1. Install the celestia-app CLI

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_txsim
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: generate celestia-appd binary
FROM --platform=$BUILDPLATFORM docker.io/golang:1.21.5-alpine3.18 as builder
FROM --platform=$BUILDPLATFORM docker.io/golang:1.21.6-alpine3.18 as builder

ARG TARGETOS
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/celestiaorg/celestia-app

go 1.21.5
go 1.21.6

require (
cosmossdk.io/errors v1.0.1
Expand Down
2 changes: 1 addition & 1 deletion go.work
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.21.5
go 1.21.6

use (
.
Expand Down
78 changes: 76 additions & 2 deletions go.work.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/testground/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# BUILD_BASE_IMAGE is the base image to use for the build. It contains a rolling
# accumulation of Go build/package caches.
ARG BUILD_BASE_IMAGE=docker.io/golang:1.21.5-alpine3.18
ARG BUILD_BASE_IMAGE=docker.io/golang:1.21.6-alpine3.18
# This Dockerfile performs a multi-stage build and RUNTIME_IMAGE is the image
# onto which to copy the resulting binary.
#
Expand Down
2 changes: 1 addition & 1 deletion test/testground/compositions/standard/plan.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ cpu = "6"
count = 40
percentage = 0.0
[groups.build_config]
build_base_image = "golang:1.21.5"
build_base_image = "golang:1.21.6"
enable_go_build_cache = true
enabled = true
go_version = "1.21"
Expand Down
2 changes: 1 addition & 1 deletion test/testground/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/celestiaorg/celestia-app/test/testground

go 1.21.5
go 1.21.6

require (
github.com/celestiaorg/celestia-app v1.0.0-rc0.0.20231219172024-f57f5c104ea0
Expand Down

0 comments on commit 37a3a7d

Please sign in to comment.