Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

strategy:
matrix:
go: [ '1.22' ]
go: [ '1.26' ]

steps:
# Setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

strategy:
matrix:
go-version: [ '1.22' ]
go-version: [ '1.26' ]
kube-version: [ 'v1.26.6' ]
solr-version: [ '9' ] # [ '8', '9' ]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smoke-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

strategy:
matrix:
go: [ '1.22' ]
go: [ '1.26' ]

steps:
# Setup
Expand Down
2 changes: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# limitations under the License.

# Build the manager binary
FROM golang:1.22 as builder
FROM golang:1.26 as builder

WORKDIR /workspace
ARG GO111MODULE=on
Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/apache/solr-operator

go 1.22.0

toolchain go1.22.10
go 1.26

require (
github.com/cert-manager/cert-manager v1.15.4
Expand Down
4 changes: 2 additions & 2 deletions hack/release/wizard/releaseWizard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ groups:
You will need these tools:

* Python v3.4 or later, with dependencies listed in requirements.txt
* Go 1.22
* Go 1.26
* gpg
* git
* svn
Expand Down Expand Up @@ -910,7 +910,7 @@ groups:
Make sure you have the following installed before running the smoke test:
- Docker (Give it enough memory and CPU to run ~12 containers, 3 of which are Solr nodes)
More information on required resources can be found here: https://kind.sigs.k8s.io/docs/user/quick-start/#settings-for-docker-desktop
- Go 1.22
- Go 1.26
- Kubectl
- GnuPG
- Helm v3.4.0+
Expand Down
Loading