-
Notifications
You must be signed in to change notification settings - Fork 16
Bump to go1.24 and upgrade argocd to 2.14.17 #2433
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f7259ea
8c89e76
c1d0a40
86bb469
7ecf57d
0904650
20b1209
0004730
6ed00b9
bac7246
51fdd92
6b43263
9701ec7
40896a2
69292a8
7ec2377
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,12 +1,12 @@ | ||||||
| module github.com/stackrox/acs-fleet-manager | ||||||
|
|
||||||
| go 1.23.0 | ||||||
| go 1.24.6 | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Better to specify the lowest possible Go version, to be able to run on the lower patch versions, unless you rely on a bug fix that is introduced in
Suggested change
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unfortunately, 1.24.6 is the lowest possible.The argo-cd dep requires it: |
||||||
|
|
||||||
| require ( | ||||||
| github.com/DATA-DOG/go-sqlmock v1.5.2 | ||||||
| github.com/antihax/optional v1.0.0 | ||||||
| github.com/argoproj-labs/argocd-operator v0.14.0 | ||||||
| github.com/argoproj/argo-cd/v2 v2.14.13 | ||||||
| github.com/argoproj/argo-cd/v2 v2.14.17 | ||||||
| github.com/aws/aws-sdk-go-v2 v1.36.5 | ||||||
| github.com/aws/aws-sdk-go-v2/config v1.29.17 | ||||||
| github.com/aws/aws-sdk-go-v2/credentials v1.17.70 | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,9 @@ | ||
| FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi8/go-toolset:1.23.9-2.1749483526 AS build | ||
| FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi8/go-toolset:1.24.6-1756315360 AS build | ||
| USER root | ||
| ENV GOFLAGS="-mod=mod" | ||
|
|
||
| RUN mkdir /src | ||
| WORKDIR /src | ||
| RUN CGO_ENABLED=0 go install -ldflags "-s -w -extldflags '-static'" github.com/go-delve/delve/cmd/dlv@v1.23.1 | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like a debugging leftover |
||
| COPY go.* ./ | ||
| RUN go mod download | ||
| COPY . ./ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice