Skip to content

Commit 9b616e2

Browse files
bump golang to 1.26.0
Signed-off-by: Mayank Shah <mayank.shah@percona.com>
1 parent 1ec30a1 commit 9b616e2

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/linters/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module linters
22

3-
go 1.25.1
3+
go 1.26.0

.github/workflows/reviewdog.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
steps:
88
- uses: actions/setup-go@v6
99
with:
10-
go-version: '^1.25.1'
10+
go-version: '^1.26.0'
1111
- uses: actions/checkout@v6
1212
- name: golangci-lint
1313
uses: golangci/golangci-lint-action@v9
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v6
2424
- uses: actions/setup-go@v6
2525
with:
26-
go-version: '^1.25.1'
26+
go-version: '^1.26.0'
2727
- run: go install -v github.com/incu6us/goimports-reviser/v3@latest
2828
- run: $(go env GOPATH)/bin/goimports-reviser -imports-order "std,general,company,project" -company-prefixes "github.com/percona" ./...
2929
- uses: reviewdog/action-suggester@v1
@@ -47,7 +47,7 @@ jobs:
4747
- uses: actions/checkout@v6
4848
- uses: actions/setup-go@v6
4949
with:
50-
go-version: '^1.25.1'
50+
go-version: '^1.26.0'
5151
- run: go install mvdan.cc/sh/v3/cmd/shfmt@latest
5252
- run: $(go env GOPATH)/bin/shfmt -bn -ci -s -w .
5353
- name: suggester / shfmt

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Setup Go
1111
uses: actions/setup-go@v6
1212
with:
13-
go-version: '^1.25.1'
13+
go-version: '^1.26.0'
1414
- uses: actions/checkout@v6
1515
- name: Basic tests
1616
run: make check

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ pipeline {
506506
-v $WORKSPACE/src/github.com/percona/percona-postgresql-operator:/go/src/github.com/percona/percona-postgresql-operator \
507507
-w /go/src/github.com/percona/percona-postgresql-operator \
508508
-e GO111MODULE=on \
509-
golang:1.25.1 sh -c '
509+
golang:1.26.0 sh -c '
510510
go install github.com/google/go-licenses@latest;
511511
/go/bin/go-licenses csv github.com/percona/percona-postgresql-operator/v2/cmd/postgres-operator \
512512
| cut -d , -f 3 \

build/postgres-operator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG BASE_IMAGE=ubi10
22

3-
FROM --platform=${BUILDPLATFORM} golang:1.25 AS go_builder
3+
FROM --platform=${BUILDPLATFORM} golang:1.26 AS go_builder
44
WORKDIR /go/src/github.com/percona/percona-postgresql-operator
55

66
COPY go.mod go.sum ./

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/percona/percona-postgresql-operator/v2
22

3-
go 1.25.1
3+
go 1.26.0
44

55
require (
66
github.com/Percona-Lab/percona-version-service v0.0.0-20230404081016-ea25e30cdcbc

0 commit comments

Comments
 (0)