Skip to content

Commit 37d0e4b

Browse files
authored
Update go to 1.22.2 (#1838)
1 parent 7bce04b commit 37d0e4b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/juno-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
go: [ '1.22' ]
16+
go: [ '1.22.2' ]
1717
os: [ ubuntu-latest, macos-latest, self-hosted-linux-arm64]
1818
runs-on: ${{ matrix.os }}
1919
env:

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Stage 1: Build golang dependencies and binaries
2-
FROM ubuntu:23.10 AS build
2+
FROM ubuntu:24.04 AS build
33

44
ARG VM_DEBUG
55

66
# Install Alpine Dependencies
7+
# removal is temp. to fix https://github.com/orgs/community/discussions/120966
78
RUN apt-get update && \
89
apt-get install build-essential cargo git golang upx-ucl libjemalloc-dev libjemalloc2 -y
910

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module github.com/NethermindEth/juno
22

33
// if version specified as "1.22" (without bugfix) it breaks CodeQL github build
4-
go 1.22.0
4+
go 1.22.2
55

66
require (
77
github.com/Masterminds/semver/v3 v3.2.1

0 commit comments

Comments
 (0)