diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 2f8ed0acd..122105164 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -11,7 +11,7 @@ on: jobs: audit: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Cancel Previous Runs uses: styfle/cancel-workflow-action@0.6.0 diff --git a/Dockerfile b/Dockerfile index dd513466f..b34d5eaae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ARG USER=$USER # Build Geth in a stock Go builder container FROM golang:1.22-alpine as builder -RUN apk add --no-cache gcc musl-dev linux-headers git +RUN apk add --no-cache gcc musl-dev linux-headers git make COPY . /go-ethereum WORKDIR /go-ethereum diff --git a/params/version.go b/params/version.go index 1944f159e..c081274e4 100644 --- a/params/version.go +++ b/params/version.go @@ -30,7 +30,7 @@ const ( const ( BspVersionMajor = 2 // Major version component of the current release BspVersionMinor = 0 // Minor version component of the current release - BspVersionPatch = 0 // Patch version component of the current release + BspVersionPatch = 2 // Patch version component of the current release ) // Version holds the textual version string.