Skip to content

Commit

Permalink
bump Golang to v1.23.1
Browse files Browse the repository at this point in the history
  • Loading branch information
csuzhangxc committed Sep 20, 2024
1 parent c6876d1 commit 57c266b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@ jobs:
- e2e-v1.27
- e2e-v1.28
steps:
- name: Set up Go
uses: actions/setup-go@v2
- name: setup go
uses: actions/setup-go@v5
with:
go-version: 1.22.5
go-version-file: ./go.mod
cache-dependency-path: "**/*.sum"
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
path: go/src/github.com/${{ github.repository }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.22.5 as builder
FROM golang:1.23.1 as builder
WORKDIR /go/src/github.com/pingcap/advanced-statefulset
ADD . .
RUN make cmd/controller-manager
Expand Down
2 changes: 1 addition & 1 deletion client/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/pingcap/advanced-statefulset/client

go 1.21
go 1.23.1

require (
github.com/docker/distribution v2.7.1+incompatible
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/pingcap/advanced-statefulset

go 1.22
go 1.23.1

require (
github.com/davecgh/go-spew v1.1.1
Expand Down

0 comments on commit 57c266b

Please sign in to comment.