Skip to content

Commit 56546a7

Browse files
committed
feat(deps): upgrade dependencies in Dockerfiles, and update goreleaser config
This change will upgrade the dependencies referenced within the different Dockerfiles, as well as update the goreleaser configuration yaml file. There were some deprecated fields, and have been updated to the new field, or syntax format. Signed-off-by: Casale, Robert <[email protected]>
1 parent 5769b6c commit 56546a7

File tree

6 files changed

+20
-15
lines changed

6 files changed

+20
-15
lines changed

.github/workflows/titlecheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ on:
1313

1414
jobs:
1515
titlecheck:
16-
name: PR title follows coventional commit
16+
name: PR title follows conventional commit
1717
runs-on: ubuntu-latest
1818
steps:
19-
- name: Check conventinal title
19+
- name: Check conventional title
2020
uses: amannn/action-semantic-pull-request@v5
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.goreleaser.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ release:
3535
archives:
3636
-
3737
id: default
38-
builds:
38+
ids:
3939
- default
4040
name_template: '{{ .ProjectName }}_{{ if eq .Os "darwin" }}macos{{ else }}{{ .Os }}{{ end }}_{{ .Arch }}'
41-
format: tar.gz
41+
formats: [tar.gz]
4242
format_overrides:
4343
- goos: windows
44-
format: zip
44+
formats: [zip]
4545

4646
checksum:
4747
name_template: "{{ .ProjectName }}_checksums.txt"
4848

4949
snapshot:
50-
name_template: "{{ .Tag }}-next"
50+
version_template: "{{ .Tag }}-next"
5151

5252
changelog:
5353
sort: asc

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.20 AS certs
1+
FROM alpine:3.21 AS certs
22
RUN apk --update add ca-certificates && adduser -D kconnect
33

44
FROM scratch

Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.20
1+
FROM alpine:3.21
22

33
RUN apk --no-cache add ca-certificates && adduser -D kconnect
44
COPY kconnect /

Dockerfile.deps

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1-
FROM alpine:3.20 AS builder
1+
FROM alpine:3.21 AS builder
2+
# https://github.com/kubernetes-sigs/aws-iam-authenticator
3+
ARG AWS_IAM_AUTH_VERSION=0.7.4
4+
# https://github.com/int128/kubelogin
5+
ARG ODIC_LOGIN_VERSION=1.33.0
6+
# https://github.com/Azure/kubelogin
7+
ARG KUBELOGIN_VERSION=0.2.9
8+
# https://github.com/kubernetes/kubectl
9+
ARG KUBECTL_VERSION=1.32.6
10+
# https://github.com/helm/helm
11+
ARG HELM_VERSION=3.18.4
212

3-
ARG AWS_IAM_AUTH_VERSION=0.6.29
4-
ARG ODIC_LOGIN_VERSION=1.31.1
5-
ARG KUBELOGIN_VERSION=0.1.6
6-
ARG KUBECTL_VERSION=1.32.0
7-
ARG HELM_VERSION=3.16.4
813
ARG TARGETOS
914
ARG TARGETARCH
1015
ARG TARGETVARIANT

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ release: # Builds a release
8585
goreleaser
8686

8787
.PHONY: release-local
88-
release-local: # Builds a relase locally
88+
release-local: # Builds a release locally
8989
goreleaser --snapshot --skip=publish --clean
9090

9191
##@ Test & CI

0 commit comments

Comments
 (0)