Skip to content

Commit a6877ee

Browse files
committed
chore: move Go to v1.22 because it's required for geth
1 parent b546151 commit a6877ee

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/e2e-evm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Set up Go
3131
uses: actions/setup-go@v5
3232
with:
33-
go-version: 1.24
33+
go-version: 1.22
3434
cache: true
3535

3636
# Use GitHub actions output paramters to get go paths. For more info, see

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/setup-go@v5
4141
if: steps.check_nibiru_go.outputs.nibiru-go == 'true'
4242
with:
43-
go-version: 1.24
43+
go-version: 1.22
4444
cache: false # the golangci-lint action already caches for us (https://github.com/golangci/golangci-lint-action#performance)
4545

4646
# Use GitHub actions output paramters to get go paths. For more info, see

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
if: steps.check_nibiru_go.outputs.nibiru-go == 'true'
4242
uses: actions/setup-go@v5
4343
with:
44-
go-version: 1.24
44+
go-version: 1.22
4545
cache: true
4646

4747
# Use GitHub actions output paramters to get go paths. For more info, see

.github/workflows/simulation-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: actions/setup-go@v5
1818
with:
19-
go-version: 1.24
19+
go-version: 1.22
2020
cache: true
2121
- name: TestAppStateDeterminism
2222
run: |
@@ -28,7 +28,7 @@ jobs:
2828
- uses: actions/checkout@v4
2929
- uses: actions/setup-go@v5
3030
with:
31-
go-version: 1.24
31+
go-version: 1.22
3232
cache: true
3333
- name: TestFullAppSimulation
3434
run: |
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@v4
4141
- uses: actions/setup-go@v5
4242
with:
43-
go-version: 1.24
43+
go-version: 1.22
4444
cache: true
4545
- name: TestAppImportExport
4646
run: |
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@v4
5353
- uses: actions/setup-go@v5
5454
with:
55-
go-version: 1.24
55+
go-version: 1.22
5656
cache: true
5757
- name: TestAppSimulationAfterImport
5858
run: |

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
if: steps.check_nibiru_go.outputs.nibiru-go == 'true'
4040
uses: actions/setup-go@v5
4141
with:
42-
go-version: 1.24
42+
go-version: 1.22
4343
cache: true
4444

4545
# Use GitHub actions output paramters to get go paths. For more info, see
@@ -94,7 +94,7 @@ jobs:
9494
if: steps.check_nibiru_go.outputs.nibiru-go == 'true'
9595
uses: actions/setup-go@v5
9696
with:
97-
go-version: 1.24
97+
go-version: 1.22
9898

9999
- name: "Install just"
100100
if: steps.check_nibiru_go.outputs.nibiru-go == 'true'

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG src=base
22

33
# ---------- Build Stage ----------
4-
FROM golang:1.24 AS build-base
4+
FROM golang:1.22 AS build-base
55

66
WORKDIR /nibiru
77

@@ -74,4 +74,4 @@ RUN apk --no-cache add ca-certificates
7474
COPY --from=build-source /root/nibid /usr/local/bin/nibid
7575

7676
ENTRYPOINT ["nibid"]
77-
CMD ["start"]
77+
CMD ["start"]

0 commit comments

Comments
 (0)