Skip to content

Commit

Permalink
chore: update go version to 1.21.11
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxMustermann2 committed Jun 10, 2024
1 parent 891d2e4 commit e34b351
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ante-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v4
with:
go-version: '1.21.9'
go-version: '1.21.11'
check-latest: true

- name: Run benchmark tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.21.9'
go-version: '1.21.11'
check-latest: true
- uses: technote-space/[email protected]
id: git_diff
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/setup-go@v4
with:
go-version: '1.21.9'
go-version: '1.21.11'
check-latest: true
- name: "Checkout Repository"
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.9'
go-version: '1.21.11'
check-latest: true
- name: release dry run
run: make release-dry-run
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# Required: setup-go, for all versions v3.0.0+ of golangci-lint
- uses: actions/setup-go@v5
with:
go-version: '1.21.9'
go-version: '1.21.11'
# Use pinned versions, not git versions
check-latest: false
# Match `golangci-lint-action` recommendation
Expand Down
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ run:
tests: false
timeout: 5m
concurrency: 4
go: "1.21.9"
go: "1.21.11"

linters:
enable:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This is the published docker image for exocore.

FROM golang:1.21.9-alpine3.18 AS build-env
FROM golang:1.21.11-alpine3.18 AS build-env

WORKDIR /go/src/github.com/ExocoreNetwork/exocore

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ localnet-show-logstream:
###############################################################################

PACKAGE_NAME:=github.com/ExocoreNetwork/exocore
GOLANG_CROSS_VERSION = v1.21.9
GOLANG_CROSS_VERSION = v1.21.11
GOPATH ?= '$(HOME)/go'
release-dry-run:
docker run \
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/ExocoreNetwork/exocore

go 1.21.9
go 1.21.11

require (
cosmossdk.io/errors v1.0.1
Expand Down
2 changes: 1 addition & 1 deletion networks/local/exocore/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21.9-alpine3.18 AS build
FROM golang:1.21.11-alpine3.18 AS build
RUN apk add --no-cache build-base=0.5-r3 linux-headers=6.3-r0 git=2.40.1-r0
# Set working directory for the build
WORKDIR /go/work
Expand Down

0 comments on commit e34b351

Please sign in to comment.