Skip to content

Commit

Permalink
Merge pull request rook#14748 from obnoxxx/support-go-1-23
Browse files Browse the repository at this point in the history
build: support golang 1.23
  • Loading branch information
BlaineEXE authored Sep 23, 2024
2 parents aba78ea + 9ecd6a2 commit 3136266
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ["1.22"]
go-version: ["1.22", "1.23"]
steps:
- name: checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down
2 changes: 1 addition & 1 deletion build/makelib/golang.mk
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ GO_TEST_FLAGS ?=
# ====================================================================================
# Setup go environment

GO_SUPPORTED_VERSIONS ?= 1.22
GO_SUPPORTED_VERSIONS ?= 1.22|1.23

GO_PACKAGES := $(foreach t,$(GO_SUBDIRS),$(GO_PROJECT)/$(t)/...)
GO_INTEGRATION_TEST_PACKAGES := $(foreach t,$(GO_INTEGRATION_TESTS_SUBDIRS),$(GO_PROJECT)/$(t)/integration)
Expand Down

0 comments on commit 3136266

Please sign in to comment.