diff --git a/.github/actions/setup-go/action.yml b/.github/actions/setup-go/action.yml index 2d157acc..5ff5b487 100644 --- a/.github/actions/setup-go/action.yml +++ b/.github/actions/setup-go/action.yml @@ -6,7 +6,7 @@ runs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.22' + go-version: '1.23' # unfortunately we cannot use the provided caching because it uses the # same cache for all workflows/jobs, leading to undesired cache clashes, # causing uncached test runs etc ... diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index ea699b2b..7abf36af 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -29,7 +29,7 @@ jobs: uses: actions/checkout@v4 - uses: ./.github/actions/setup-go with: - go-version: 1.22 + go-version: 1.23 - run: rustup update - uses: stellar/actions/rust-cache@main - run: make build-libs diff --git a/cmd/stellar-rpc/docker/Dockerfile b/cmd/stellar-rpc/docker/Dockerfile index 85ac537c..3f084ef7 100644 --- a/cmd/stellar-rpc/docker/Dockerfile +++ b/cmd/stellar-rpc/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22-bullseye as build +FROM golang:1.23-bullseye as build ARG RUST_TOOLCHAIN_VERSION=stable ARG REPOSITORY_VERSION ARG BINARY_NAME=stellar-rpc