1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 06:46:36 +01:00

build: bump go version to 1.23

This commit is contained in:
Thuan Vo
2025-01-23 11:14:53 -08:00
parent ed9225756b
commit 20d304f7dc
14 changed files with 14 additions and 16 deletions

View File

@@ -18,8 +18,6 @@ We follow a hard flattening approach; i.e. direct and inherited dependencies are
Dependencies are managed with [Go Modules](https://github.com/golang/go/wiki/Modules) but committed directly to the repository.
We require at least Go 1.22.
- Add or update a dependency with `go get <dependency>@<version>`.
- If you want to use a fork of a project or ensure that a dependency is not updated even when another dependency requires a newer version of it, manually add a [replace directive in the go.mod file](https://github.com/golang/go/wiki/Modules#when-should-i-use-the-replace-directive).
- Run `go mod tidy` to tidy `go.mod` and update `go.sum`, then commit the changes.