Skip to content

Commit

Permalink
Update to go 1.21
Browse files Browse the repository at this point in the history
This change updates the version of Go being used from 1.19 > 1.21

Signed-off-by: Brendan Shephard <[email protected]>
  • Loading branch information
bshephar committed Dec 15, 2023
1 parent 860116a commit 6299d82
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 25 deletions.
16 changes: 8 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GOLANG_BUILDER=golang:1.19
ARG GOLANG_BUILDER=golang:1.21
ARG OPERATOR_BASE_IMAGE=gcr.io/distroless/static:nonroot

# Build the manager binary
Expand Down Expand Up @@ -49,16 +49,16 @@ ARG IMAGE_TAGS="cn-openstack openstack"

# Labels required by upstream and osbs build system
LABEL com.redhat.component="${IMAGE_COMPONENT}" \
name="${IMAGE_NAME}" \
version="${IMAGE_VERSION}" \
summary="${IMAGE_SUMMARY}" \
io.k8s.name="${IMAGE_NAME}" \
io.k8s.description="${IMAGE_DESC}" \
io.openshift.tags="${IMAGE_TAGS}"
name="${IMAGE_NAME}" \
version="${IMAGE_VERSION}" \
summary="${IMAGE_SUMMARY}" \
io.k8s.name="${IMAGE_NAME}" \
io.k8s.description="${IMAGE_DESC}" \
io.openshift.tags="${IMAGE_TAGS}"
### DO NOT EDIT LINES ABOVE

ENV USER_UID=$USER_ID \
OPERATOR_TEMPLATES=/usr/share/infra-operator/templates/
OPERATOR_TEMPLATES=/usr/share/infra-operator/templates/

WORKDIR /

Expand Down
45 changes: 28 additions & 17 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
{
"extends": [
"github>openstack-k8s-operators/renovate-config"
],
"constraints": {
"go": "1.19"
},
"packageRules": [
{
"matchPackageNames": ["github.com/openstack-k8s-operators/infra-operator/apis"],
"enabled": false
}
],
"postUpgradeTasks": {
"commands": ["make gowork", "make tidy", "make manifests generate"],
"fileFilters": ["**/go.mod", "**/go.sum", "**/*.go", "**/*.yaml"],
"executionMode": "update"
}
"extends": [
"github>openstack-k8s-operators/renovate-config"
],
"constraints": {
"go": "1.21"
},
"packageRules": [
{
"matchPackageNames": [
"github.com/openstack-k8s-operators/infra-operator/apis"
],
"enabled": false
}
],
"postUpgradeTasks": {
"commands": [
"make gowork",
"make tidy",
"make manifests generate"
],
"fileFilters": [
"**/go.mod",
"**/go.sum",
"**/*.go",
"**/*.yaml"
],
"executionMode": "update"
}
}

0 comments on commit 6299d82

Please sign in to comment.