File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 13
13
strategy :
14
14
fail-fast : false
15
15
matrix :
16
- go : [ '1.22' ]
16
+ go : [ '1.22.2 ' ]
17
17
os : [ ubuntu-latest, macos-latest, self-hosted-linux-arm64]
18
18
runs-on : ${{ matrix.os }}
19
19
env :
Original file line number Diff line number Diff line change 1
1
# Stage 1: Build golang dependencies and binaries
2
- FROM ubuntu:23.10 AS build
2
+ FROM ubuntu:24.04 AS build
3
3
4
4
ARG VM_DEBUG
5
5
6
6
# Install Alpine Dependencies
7
+ # removal is temp. to fix https://github.com/orgs/community/discussions/120966
7
8
RUN apt-get update && \
8
9
apt-get install build-essential cargo git golang upx-ucl libjemalloc-dev libjemalloc2 -y
9
10
Original file line number Diff line number Diff line change 1
1
module github.com/NethermindEth/juno
2
2
3
3
// if version specified as "1.22" (without bugfix) it breaks CodeQL github build
4
- go 1.22.0
4
+ go 1.22.2
5
5
6
6
require (
7
7
github.com/Masterminds/semver/v3 v3.2.1
You can’t perform that action at this time.
0 commit comments