Skip to content

Commit

Permalink
Update go to 1.22.2 (#1838)
Browse files Browse the repository at this point in the history
  • Loading branch information
kirugan authored May 20, 2024
1 parent 7bce04b commit 37d0e4b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/juno-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [ '1.22' ]
go: [ '1.22.2' ]
os: [ ubuntu-latest, macos-latest, self-hosted-linux-arm64]
runs-on: ${{ matrix.os }}
env:
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Stage 1: Build golang dependencies and binaries
FROM ubuntu:23.10 AS build
FROM ubuntu:24.04 AS build

ARG VM_DEBUG

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

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module github.com/NethermindEth/juno

// if version specified as "1.22" (without bugfix) it breaks CodeQL github build
go 1.22.0
go 1.22.2

require (
github.com/Masterminds/semver/v3 v3.2.1
Expand Down

0 comments on commit 37d0e4b

Please sign in to comment.