Skip to content

Commit dd50353

Browse files
authored
Upgrade to go 1.23 (#345)
1 parent 0dbb665 commit dd50353

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/actions/setup-go/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ runs:
66
- name: Set up Go
77
uses: actions/setup-go@v5
88
with:
9-
go-version: '1.22'
9+
go-version: '1.23'
1010
# unfortunately we cannot use the provided caching because it uses the
1111
# same cache for all workflows/jobs, leading to undesired cache clashes,
1212
# causing uncached test runs etc ...

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/checkout@v4
3030
- uses: ./.github/actions/setup-go
3131
with:
32-
go-version: 1.22
32+
go-version: 1.23
3333
- run: rustup update
3434
- uses: stellar/actions/rust-cache@main
3535
- run: make build-libs

.github/workflows/golang.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
make build-libs
3434
3535
- name: Run golangci-lint
36-
uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # version v6.0.1
36+
uses: golangci/golangci-lint-action@58eda26a511c265ee35b3ee4b101fb8adfd76480 # version v6.1.1
3737
with:
38-
version: v1.59.1 # this is the golangci-lint version
38+
version: v1.63.4 # this is the golangci-lint version
3939
github-token: ${{ secrets.GITHUB_TOKEN }}
4040
only-new-issues: true

cmd/stellar-rpc/docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22-bullseye as build
1+
FROM golang:1.23-bullseye as build
22
ARG RUST_TOOLCHAIN_VERSION=stable
33
ARG REPOSITORY_VERSION
44
ARG BINARY_NAME=stellar-rpc

0 commit comments

Comments
 (0)