chore(deps): update Go version to 1.23 in configuration files

This commit is contained in:
LinkinStars
2025-06-24 11:16:29 +08:00
parent d02d09bb9a
commit 03ec0ddfbb
5 changed files with 5 additions and 5 deletions
@@ -44,7 +44,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.22
go-version: 1.23
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
+1 -1
View File
@@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
FROM golang:1.22-alpine AS golang-builder
FROM golang:1.23-alpine AS golang-builder
LABEL maintainer="linkinstar@apache.org"
ARG GOPROXY
+1 -1
View File
@@ -40,7 +40,7 @@ You can also check out the [plugins here](https://answer.apache.org/plugins).
### Prerequisites
- Golang >= 1.22
- Golang >= 1.23
- Node.js >= 20
- pnpm >= 9
- [mockgen](https://github.com/uber-go/mock?tab=readme-ov-file#installation) >= 1.6.0
+1 -1
View File
@@ -49,7 +49,7 @@ var (
// Time is the build time of the project
Time = ""
// GoVersion is the go version of the project
GoVersion = "1.22"
GoVersion = "1.23"
// log level
logLevel = os.Getenv("LOG_LEVEL")
// log path
+1 -1
View File
@@ -62,7 +62,7 @@ func main() {
`
goModTpl = `module answer
go 1.22
go 1.23
`
)