diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index 3de8f0fa..d65de01d 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -69,7 +69,7 @@ jobs: - name: Start Minikube # run this stage only if there are changes that match the includes and not the excludes if: ${{ env.CHANGES != '' }} - uses: medyagh/setup-minikube@606b71970c783154fe49b711486c717f5780f485 # v0.0.15 + uses: medyagh/setup-minikube@d8c0eb871f6f455542491d86a574477bd3894533 # v0.0.18 with: addons: ingress diff --git a/.rhdh/docker/Dockerfile b/.rhdh/docker/Dockerfile index a5806949..bb6ffb29 100644 --- a/.rhdh/docker/Dockerfile +++ b/.rhdh/docker/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. #@follow_tag(registry.redhat.io/rhel9/go-toolset:latest) -FROM registry.access.redhat.com/ubi9/go-toolset:1.20.12-3.1712567214 AS builder +FROM registry.access.redhat.com/ubi9/go-toolset:1.21.11-7@sha256:d128c3d36878251f039606f144ef2608746c3203708b722295e6c571df1d8613 AS builder # hadolint ignore=DL3002 USER 0 ENV GOPATH=/go/ @@ -54,7 +54,7 @@ RUN export ARCH="$(uname -m)" && if [[ ${ARCH} == "x86_64" ]]; then export ARCH= # Install openssl for FIPS support #@follow_tag(registry.redhat.io/ubi9/ubi-minimal:latest) -FROM registry.access.redhat.com/ubi9-minimal:9.3-1612 AS runtime +FROM registry.access.redhat.com/ubi9-minimal:9.4-1194@sha256:104cf11d890aeb7dd5728b7d7732e175a0e4018f1bb00d2faebcc8f6bf29bd52 AS runtime RUN microdnf update --setopt=install_weak_deps=0 -y && microdnf install -y openssl; microdnf clean -y all # Upstream sources diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 7b22a3f7..9802fe69 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -5,7 +5,7 @@ kind: Kustomization images: - name: controller newName: quay.io/janus-idp/operator - newTag: 0.1.2 + newTag: 0.3.0@sha256:fc4ef462dafd718a743ec9508e7a0800cc2f010a271b64f285cd55e13c24f858 generatorOptions: disableNameSuffixHash: true diff --git a/docker/Dockerfile b/docker/Dockerfile index bfa0469c..edc11476 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. #@follow_tag(registry.redhat.io/rhel9/go-toolset:latest) -FROM registry.access.redhat.com/ubi9/go-toolset:1.20.12-3.1712567214 AS builder +FROM registry.access.redhat.com/ubi9/go-toolset:1.21.11-7@sha256:d128c3d36878251f039606f144ef2608746c3203708b722295e6c571df1d8613 AS builder # hadolint ignore=DL3002 USER 0 ENV GOPATH=/go/ @@ -54,7 +54,7 @@ RUN export ARCH="$(uname -m)" && if [[ ${ARCH} == "x86_64" ]]; then export ARCH= # Install openssl for FIPS support #@follow_tag(registry.redhat.io/ubi9/ubi-minimal:latest) -FROM registry.access.redhat.com/ubi9-minimal:9.3-1612 AS runtime +FROM registry.access.redhat.com/ubi9-minimal:9.4-1194@sha256:104cf11d890aeb7dd5728b7d7732e175a0e4018f1bb00d2faebcc8f6bf29bd52 AS runtime RUN microdnf update --setopt=install_weak_deps=0 -y && microdnf install -y openssl; microdnf clean -y all # Upstream sources diff --git a/go.mod b/go.mod index e48e1e1c..ce9d0113 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module redhat-developer/red-hat-developer-hub-operator go 1.20 require ( - github.com/go-logr/logr v1.2.4 + github.com/go-logr/logr v1.4.2 github.com/onsi/ginkgo/v2 v2.9.5 github.com/onsi/gomega v1.27.7 github.com/openshift/api v0.0.0-20231121202920-a295b8c5f513 @@ -11,7 +11,7 @@ require ( k8s.io/apimachinery v0.28.9 k8s.io/client-go v0.28.9 k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 - sigs.k8s.io/controller-runtime v0.15.3 + sigs.k8s.io/controller-runtime v0.18.4 ) require (