Skip to content

Commit b736343

Browse files
committed
update go to 1.23.2
1 parent d76993a commit b736343

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ on:
3232
paths-ignore:
3333
- "e2e-tests/**"
3434
- "packaging/**"
35-
- "version/**"
35+
- "version/**"
3636

3737
jobs:
3838
test:
@@ -45,7 +45,7 @@ jobs:
4545
test: [logical, physical, incremental, external]
4646
env:
4747
PBM_BRANCH: ${{ github.event.inputs.pbm_branch || github.ref_name }}
48-
GO_VER: ${{ github.event.inputs.go_ver || '1.22-bullseye' }}
48+
GO_VER: ${{ github.event.inputs.go_ver || '1.23-bullseye' }}
4949
PR_NUMBER: ${{ github.event.number|| github.event.inputs.pr_ver }}
5050
MAKE_TARGET: 'build-cover'
5151
steps:

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-go@v4
2020
with:
21-
go-version: "1.22"
21+
go-version: "1.23"
2222
- name: test
2323
run: go test -v ./... -covermode=atomic -coverprofile=cover.out
2424

.github/workflows/reviewdog.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- uses: actions/checkout@v4
5252
- uses: actions/setup-go@v4
5353
with:
54-
go-version: "1.22"
54+
go-version: "1.23"
5555
- name: golangci-lint
5656
uses: reviewdog/action-golangci-lint@v2
5757
with:
@@ -66,7 +66,7 @@ jobs:
6666
- uses: actions/checkout@v4
6767
- uses: actions/setup-go@v4
6868
with:
69-
go-version: "1.22"
69+
go-version: "1.23"
7070
- run: go install golang.org/x/tools/cmd/goimports@latest
7171
- run: go install mvdan.cc/gofumpt@latest
7272
- run: goimports -w -local "github.com/percona" $(find . -not -path "*/vendor/*" -name "*.go")
@@ -82,7 +82,7 @@ jobs:
8282
- uses: actions/checkout@v4
8383
- uses: actions/setup-go@v4
8484
with:
85-
go-version: "1.22"
85+
go-version: "1.23"
8686
- run: go install mvdan.cc/sh/v3/cmd/shfmt@latest
8787
- run: shfmt -f . | grep -v 'vendor' | xargs shfmt -w -s
8888
- name: suggester / shfmt

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Otherwise, we will contact you for additional information or with the request to
5353

5454
To build Percona Backup for MongoDB from source code, you require the following:
5555

56-
* Go 1.22 or above. See [Installing and setting up Go tools](
56+
* Go 1.23 or above. See [Installing and setting up Go tools](
5757
https://golang.org/doc/install) for more information
5858
* make
5959
* ``krb5-devel`` for Red Hat Enterprise Linux / CentOS or ``libkrb5-dev`` for Debian / Ubuntu. This package is required for Kerberos authentication in Percona Server for MongoDB.

e2e-tests/docker/pbm.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ COPY --from=mongo_image /bin/mongod /bin/
1212
RUN dnf install epel-release && dnf update && dnf install make gcc krb5-devel iproute-tc libfaketime
1313

1414
RUN arch=$(arch | sed s/aarch64/arm64/ | sed s/x86_64/amd64/) && \
15-
curl -sL -o /tmp/golang.tar.gz https://go.dev/dl/go1.22.5.linux-${arch}.tar.gz && \
15+
curl -sL -o /tmp/golang.tar.gz https://go.dev/dl/go1.23.2.linux-${arch}.tar.gz && \
1616
rm -rf /usr/local/go && tar -C /usr/local -xzf /tmp/golang.tar.gz && rm /tmp/golang.tar.gz
1717
ENV PATH=$PATH:/usr/local/go/bin
1818

e2e-tests/docker/tests.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ WORKDIR /build
33
RUN dnf update && dnf install make gcc krb5-devel
44

55
RUN arch=$(arch | sed s/aarch64/arm64/ | sed s/x86_64/amd64/) && \
6-
curl -sL -o /tmp/golang.tar.gz https://go.dev/dl/go1.22.5.linux-${arch}.tar.gz && \
6+
curl -sL -o /tmp/golang.tar.gz https://go.dev/dl/go1.23.2.linux-${arch}.tar.gz && \
77
rm -rf /usr/local/go && tar -C /usr/local -xzf /tmp/golang.tar.gz && rm /tmp/golang.tar.gz
88
ENV PATH=$PATH:/usr/local/go/bin
99

0 commit comments

Comments
 (0)