Skip to content

Commit b6af8e6

Browse files
committed
bump go to v1.22
1 parent cdb3c97 commit b6af8e6

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/_shared-build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Set up go
5555
uses: actions/setup-go@v4
5656
with:
57-
go-version: 1.21.x
57+
go-version: 1.22.x
5858

5959
# setup project dependencies
6060
- name: Get dependencies
@@ -88,7 +88,7 @@ jobs:
8888
- name: Set up go
8989
uses: actions/setup-go@v4
9090
with:
91-
go-version: 1.21.x
91+
go-version: 1.22.x
9292

9393
# setup cross build libs
9494
- name: Get cross build dependencies
@@ -128,7 +128,7 @@ jobs:
128128
- name: Set up go
129129
uses: actions/setup-go@v4
130130
with:
131-
go-version: 1.21.x
131+
go-version: 1.22.x
132132

133133
# setup project dependencies
134134
- name: Get dependencies
@@ -162,7 +162,7 @@ jobs:
162162
- name: Set up go
163163
uses: actions/setup-go@v4
164164
with:
165-
go-version: 1.21.x
165+
go-version: 1.22.x
166166

167167
# setup project dependencies
168168
- name: Get dependencies
@@ -196,7 +196,7 @@ jobs:
196196
- name: Set up go
197197
uses: actions/setup-go@v4
198198
with:
199-
go-version: 1.21.x
199+
go-version: 1.22.x
200200

201201
# setup project dependencies
202202
- name: Get dependencies

.github/workflows/_shared-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up go
1616
uses: actions/setup-go@v4
1717
with:
18-
go-version: 1.21.x
18+
go-version: 1.22.x
1919

2020
- name: Verify dependencies
2121
run: go mod verify

.hack/devnet/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ENCLAVE_NAME="${ENCLAVE_NAME:-assertoor}"
1919
if kurtosis enclave inspect "$ENCLAVE_NAME" > /dev/null; then
2020
echo "Kurtosis enclave '$ENCLAVE_NAME' is already up."
2121
else
22-
kurtosis run github.com/ethpandaops/ethereum-package --enclave "$ENCLAVE_NAME" --args-file "$args_file" --image-download always --non-blocking-tasks
22+
kurtosis run github.com/ethpandaops/ethereum-package --enclave "$ENCLAVE_NAME" --args-file "$args_file" --non-blocking-tasks
2323

2424
# Stop assertoor instance within ethereum-package if running
2525
kurtosis service stop "$ENCLAVE_NAME" assertoor > /dev/null || true

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM golang:1.21 AS builder
2+
FROM golang:1.22 AS builder
33
WORKDIR /src
44
COPY go.sum go.mod ./
55
RUN go mod download

Dockerfile-local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM golang:1.21 AS builder
2+
FROM golang:1.22 AS builder
33
WORKDIR /src
44
COPY go.sum go.mod ./
55
RUN go mod download

docs/01-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Assertoor provides distribution-specific executables for Windows, Linux, and mac
1616
1717
## Build from Source
1818
19-
If you prefer to build Assertoor from source, ensure you have [Go](https://go.dev/) `>= 1.21` and Make installed on your machine. Assertoor is tested on Debian, but it should work on other operating systems as well.
19+
If you prefer to build Assertoor from source, ensure you have [Go](https://go.dev/) `>= 1.22` and Make installed on your machine. Assertoor is tested on Debian, but it should work on other operating systems as well.
2020
2121
1. **Clone the Repository**:\
2222
Use the following commands to clone the Assertoor repository and navigate to its directory:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ethpandaops/assertoor
22

3-
go 1.21.1
3+
go 1.22
44

55
require (
66
github.com/attestantio/go-eth2-client v0.21.10

0 commit comments

Comments
 (0)