Skip to content
Open
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 .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build - jsonnet (https://github.com/google/go-jsonnet)
FROM golang:1.24 as jsonnet-builder
FROM golang:1.25 as jsonnet-builder
RUN go install github.com/google/go-jsonnet/cmd/jsonnet@latest
RUN go install github.com/google/go-jsonnet/cmd/jsonnet-lint@latest
RUN go install github.com/google/go-jsonnet/cmd/jsonnetfmt@latest
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/argocd_tools/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24 as go_builder
FROM golang:1.25 as go_builder

Check warning on line 1 in dockerfiles/argocd_tools/Dockerfile

View workflow job for this annotation

GitHub Actions / dockerfiles (dockerfiles/argocd_tools)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

RUN go install github.com/yannh/kubeconform/cmd/kubeconform@v0.4.13

Expand Down