Skip to content

Commit

Permalink
Revert "Increase go version"
Browse files Browse the repository at this point in the history
This reverts commit d7f873a.
  • Loading branch information
iKapitonau committed Oct 17, 2024
1 parent d7f873a commit 8ebd211
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ jobs:
- uses: actions/setup-go@v5
with:
name: set up go
go-version: 1.23 # The Go version to download (if necessary) and use.
go-version: 1.21 # The Go version to download (if necessary) and use.
- name: Build macos darwin/arm64
run: SGX_MODE=SW make build_cli
- uses: actions/upload-artifact@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.23 # The Go version to download (if necessary) and use.
go-version: 1.21 # The Go version to download (if necessary) and use.
- name: Build CLI
shell: bash
run: |
Expand All @@ -175,7 +175,7 @@ jobs:
- uses: actions/setup-go@v5
with:
name: set up go
go-version: 1.23 # The Go version to download (if necessary) and use.
go-version: 1.21 # The Go version to download (if necessary) and use.
- name: Build macos darwin/arm64
run: make build_cli
- uses: actions/upload-artifact@v3
Expand Down
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

# 1.15.0
- Update build OS to Ubuntu 22.04
- Update go to v1.23
- Update cosmos-sdk to v0.50.10. All the related changes can be found [here](https://github.com/cosmos/cosmos-sdk/blob/main/CHANGELOG.md)
- Update ibc-go to v8.1.0. Full changelog can be found [here](https://github.com/cosmos/ibc-go/blob/main/CHANGELOG.md)
- Update cometbft to v0.38.12. Full changelog can be found [here](https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md)
Expand Down
2 changes: 1 addition & 1 deletion deployment/dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ ENV GOROOT=/usr/local/go
ENV GOPATH=/go/
ENV PATH=$PATH:/usr/local/go/bin:$GOPATH/bin

ADD https://go.dev/dl/go1.23.2.linux-amd64.tar.gz go.linux-amd64.tar.gz
ADD https://go.dev/dl/go1.21.1.linux-amd64.tar.gz go.linux-amd64.tar.gz
RUN tar -C /usr/local -xzf go.linux-amd64.tar.gz
RUN go install github.com/jteeuwen/go-bindata/go-bindata@latest && go-bindata -version

Expand Down
2 changes: 1 addition & 1 deletion deployment/dockerfiles/tests/compile-contracts.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ENV GOROOT=/usr/local/go
ENV GOPATH=/go/
ENV PATH=$PATH:/usr/local/go/bin:$GOPATH/bin

ADD https://go.dev/dl/go1.23.2.linux-amd64.tar.gz go.linux-amd64.tar.gz
ADD https://go.dev/dl/go1.21.1.linux-amd64.tar.gz go.linux-amd64.tar.gz
RUN tar -C /usr/local -xzf go.linux-amd64.tar.gz

RUN apt-get update -y && \
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/scrtlabs/SecretNetwork

go 1.23
go 1.21

replace (
cosmossdk.io/api => github.com/scrtlabs/cosmos-sdk-api v0.7.5-secret.1
Expand Down

0 comments on commit 8ebd211

Please sign in to comment.