Skip to content
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

Update Go to v1.21.3, golangci-lint to v1.55.2, nancy to v1.0.45, yamllint to v1.32.0 #851

Merged
merged 1 commit into from
Nov 8, 2023
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Update Go to v1.21.3, golangci-lint to v1.55.2, nancy to v1.0.45, yamllint to v1.32.0

## [6.12.1] - 2023-07-20

### Changed
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ FROM quay.io/giantswarm/helm-chart-testing:v3.7.1 AS ct

FROM quay.io/giantswarm/app-build-suite:1.1.5 AS abs

FROM quay.io/giantswarm/golang:1.20.6-alpine3.17 AS golang
FROM quay.io/giantswarm/golang:1.21.3-alpine3.18 AS golang

FROM quay.io/giantswarm/conftest:v0.37.0 AS conftest

# Build Image
FROM quay.io/giantswarm/alpine:3.17
FROM quay.io/giantswarm/alpine:3.18

# Copy go from golang image.
COPY --from=golang /usr/local/go /usr/local/go
Expand All @@ -24,11 +24,11 @@ ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH

ARG HELM_VERSION=v3.8.1
ARG KUBEBUILDER_VERSION=3.1.0
ARG GOLANGCI_LINT_VERSION=v1.53.3
ARG NANCY_VERSION=v1.0.37
ARG GOLANGCI_LINT_VERSION=v1.55.2
ARG NANCY_VERSION=v1.0.45
ARG KUBECONFORM_VERSION=v0.4.13
ARG CT_YAMALE_VER=3.0.6
ARG CT_YAMLLINT_VER=1.26.1
ARG CT_YAMLLINT_VER=1.32.0

RUN apk add --no-cache \
bash \
Expand Down