Skip to content

Commit 99c1a4c

Browse files
chore(deps): update minor and patch
1 parent b79653e commit 99c1a4c

File tree

14 files changed

+144
-144
lines changed

14 files changed

+144
-144
lines changed

docker-kubectl-helm/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM lachlanevenson/k8s-kubectl:v1.20.1 AS kubectl
2-
FROM lachlanevenson/k8s-helm:v3.8.0 AS helm
1+
FROM lachlanevenson/k8s-kubectl:v1.25.4 AS kubectl
2+
FROM lachlanevenson/k8s-helm:v3.10.2 AS helm
33

44
FROM docker:dind as docker-kubectl-helm
55

go-build-1.21/Dockerfile

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
FROM hairyhenderson/gomplate:v3.10.0-slim AS gomplate
2-
FROM docker:23.0.1 AS docker
1+
FROM hairyhenderson/gomplate:v3.11.7-slim AS gomplate
2+
FROM docker:23.0.6 AS docker
33
FROM docker/compose:1.29.2 AS compose
4-
FROM vault:1.9.3 AS vault
5-
FROM hashicorp/terraform:1.1.5 AS terraform
6-
FROM hashicorp/packer:1.7.10 AS packer
7-
FROM prom/prometheus:v2.33.1 AS prometheus
8-
FROM prom/alertmanager:v0.23.0 AS alertmanager
9-
FROM mikefarah/yq:4.18.1 AS yq
10-
FROM lachlanevenson/k8s-kubectl:v1.21.9 AS kubectl
4+
FROM vault:1.13.3 AS vault
5+
FROM hashicorp/terraform:1.10.5 AS terraform
6+
FROM hashicorp/packer:1.12.0 AS packer
7+
FROM prom/prometheus:v2.55.1 AS prometheus
8+
FROM prom/alertmanager:v0.28.0 AS alertmanager
9+
FROM mikefarah/yq:4.45.1 AS yq
10+
FROM lachlanevenson/k8s-kubectl:v1.25.4 AS kubectl
1111
FROM lachlanevenson/k8s-helm:v3.10.2 AS helm2
12-
FROM lachlanevenson/k8s-helm:v3.8.0 AS helm
13-
FROM golangci/golangci-lint:v1.44.0-alpine AS golangci-lint
12+
FROM lachlanevenson/k8s-helm:v3.10.2 AS helm
13+
FROM golangci/golangci-lint:v1.64.5-alpine AS golangci-lint
1414

15-
FROM alpine:3.18 AS cc-test-reporter
15+
FROM alpine:3.21 AS cc-test-reporter
1616

1717
RUN wget -q -O /bin/cc-test-reporter https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64
1818
RUN chmod +x /bin/cc-test-reporter
1919

20-
FROM alpine:3.18 AS packages
20+
FROM alpine:3.21 AS packages
2121

2222
RUN apk add --no-cache \
2323
zip \
@@ -52,7 +52,7 @@ RUN wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/$GLIBC/g
5252
&& ln -s /lib/libc.musl-x86_64.so.1 /usr/glibc-compat/lib \
5353
&& ln -s /usr/lib/libgcc_s.so.1 /usr/glibc-compat/lib
5454

55-
FROM golang:1.21.13-alpine AS build
55+
FROM golang:1.24.0-alpine AS build
5656

5757
COPY --from=gomplate /gomplate /bin/gomplate
5858
COPY --from=docker /usr/local/bin/docker /bin/docker
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
awscli==1.32.16
2-
botocore==1.34.16
3-
colorama==0.4.3
4-
docutils==0.15.2
1+
awscli==1.37.25
2+
botocore==1.36.25
3+
colorama==0.4.6
4+
docutils==0.21.2
55
jmespath==0.10.0
6-
pyasn1==0.4.8
7-
python-dateutil==2.8.2
6+
pyasn1==0.6.1
7+
python-dateutil==2.9.0.post0
88
PyYAML==6.0.2
9-
rsa==4.7.2
10-
s3transfer==0.10.0
11-
six==1.16.0
9+
rsa==4.9
10+
s3transfer==0.11.2
11+
six==1.17.0
1212
urllib3==1.26.8
1313
requests==2.31.0

go-build/Dockerfile

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
FROM hairyhenderson/gomplate:v3.11.6-slim AS gomplate
2-
FROM docker:23.0.1 AS docker
1+
FROM hairyhenderson/gomplate:v3.11.7-slim AS gomplate
2+
FROM docker:23.0.6 AS docker
33
FROM docker/compose:1.29.2 AS compose
4-
FROM vault:1.9.3 AS vault
5-
FROM hashicorp/terraform:1.6.6 AS terraform
6-
FROM hashicorp/packer:1.7.10 AS packer
7-
FROM prom/prometheus:v2.41.0 AS prometheus
8-
FROM prom/alertmanager:v0.24.0 AS alertmanager
9-
FROM mikefarah/yq:4.31.2 AS yq
4+
FROM vault:1.13.3 AS vault
5+
FROM hashicorp/terraform:1.10.5 AS terraform
6+
FROM hashicorp/packer:1.12.0 AS packer
7+
FROM prom/prometheus:v2.55.1 AS prometheus
8+
FROM prom/alertmanager:v0.28.0 AS alertmanager
9+
FROM mikefarah/yq:4.45.1 AS yq
1010
FROM lachlanevenson/k8s-kubectl:v1.25.4 AS kubectl
1111
FROM lachlanevenson/k8s-helm:v3.10.2 AS helm2
1212
FROM lachlanevenson/k8s-helm:v3.10.2 AS helm
13-
FROM golangci/golangci-lint:v1.44.0-alpine AS golangci-lint
13+
FROM golangci/golangci-lint:v1.64.5-alpine AS golangci-lint
1414

15-
FROM alpine:3.19 AS cc-test-reporter
15+
FROM alpine:3.21 AS cc-test-reporter
1616

1717
RUN wget -q -O /bin/cc-test-reporter https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64
1818
RUN chmod +x /bin/cc-test-reporter
1919

20-
FROM alpine:3.19 AS packages
20+
FROM alpine:3.21 AS packages
2121

2222
RUN apk add --no-cache \
2323
zip \
@@ -52,7 +52,7 @@ RUN wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/$GLIBC/g
5252
&& ln -s /lib/libc.musl-x86_64.so.1 /usr/glibc-compat/lib \
5353
&& ln -s /usr/lib/libgcc_s.so.1 /usr/glibc-compat/lib
5454

55-
FROM golang:1.19.9-alpine AS build
55+
FROM golang:1.24.0-alpine AS build
5656

5757
COPY --from=gomplate /gomplate /bin/gomplate
5858
COPY --from=docker /usr/local/bin/docker /bin/docker

go-build/awscli-requirements.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
awscli==1.32.16
2-
botocore==1.34.16
3-
colorama==0.4.4
4-
docutils==0.16
1+
awscli==1.37.25
2+
botocore==1.36.25
3+
colorama==0.4.6
4+
docutils==0.21.2
55
jmespath==1.0.1
6-
pyasn1==0.5.1
7-
python-dateutil==2.8.2
8-
PyYAML==6.0.1
9-
rsa==4.7.2
10-
s3transfer==0.10.0
11-
six==1.16.0
6+
pyasn1==0.6.1
7+
python-dateutil==2.9.0.post0
8+
PyYAML==6.0.2
9+
rsa==4.9
10+
s3transfer==0.11.2
11+
six==1.17.0
1212
urllib3==2.0.7
13-
yamllint==1.33.0
13+
yamllint==1.35.1
1414
requests==2.31.0

metrics-build/Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM hairyhenderson/gomplate:v3.11.6-slim AS gomplate
2-
FROM docker:27.0.3 AS docker
3-
FROM hashicorp/vault:1.17.2 AS vault
4-
FROM hashicorp/terraform:1.9.2 AS terraform
5-
FROM bitnami/prometheus:2.53.1 AS prometheus
6-
FROM bitnami/alertmanager:0.27.0 AS alertmanager
7-
FROM grafana/mimirtool:2.13.0 AS mimirtool
1+
FROM hairyhenderson/gomplate:v3.11.7-slim AS gomplate
2+
FROM docker:27.5.1 AS docker
3+
FROM hashicorp/vault:1.18.4 AS vault
4+
FROM hashicorp/terraform:1.10.5 AS terraform
5+
FROM bitnami/prometheus:2.55.1 AS prometheus
6+
FROM bitnami/alertmanager:0.28.0 AS alertmanager
7+
FROM grafana/mimirtool:2.15.0 AS mimirtool
88

9-
FROM alpine:3.19 AS packages
9+
FROM alpine:3.21 AS packages
1010

1111
RUN apk add --no-cache \
1212
make \
@@ -19,7 +19,7 @@ RUN apk add --no-cache \
1919
openssh \
2020
github-cli
2121

22-
FROM alpine:3.19 AS build
22+
FROM alpine:3.21 AS build
2323

2424
COPY --from=gomplate /gomplate /bin/gomplate
2525
COPY --from=docker /usr/local/bin/docker /bin/docker

node-build/Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM hairyhenderson/gomplate:v3.11.6-slim AS gomplate
2-
FROM docker:27.5.0 AS docker
1+
FROM hairyhenderson/gomplate:v3.11.7-slim AS gomplate
2+
FROM docker:27.5.1 AS docker
33
FROM docker/compose:1.29.2 AS compose
44
FROM vault:1.13.3 AS vault
5-
FROM hashicorp/terraform:1.6.6 AS terraform
6-
FROM hashicorp/packer:1.7.10 AS packer
7-
FROM prom/prometheus:v2.41.0 AS prometheus
8-
FROM prom/alertmanager:v0.24.0 AS alertmanager
9-
FROM mikefarah/yq:4.31.2 AS yq
5+
FROM hashicorp/terraform:1.10.5 AS terraform
6+
FROM hashicorp/packer:1.12.0 AS packer
7+
FROM prom/prometheus:v2.55.1 AS prometheus
8+
FROM prom/alertmanager:v0.28.0 AS alertmanager
9+
FROM mikefarah/yq:4.45.1 AS yq
1010
FROM lachlanevenson/k8s-kubectl:v1.25.4 AS kubectl
1111
FROM lachlanevenson/k8s-helm:v3.10.2 AS helm2
1212
FROM lachlanevenson/k8s-helm:v3.10.2 AS helm
@@ -50,14 +50,14 @@ RUN wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/$GLIBC/g
5050
&& ln -s /lib/libc.musl-x86_64.so.1 /usr/glibc-compat/lib \
5151
&& ln -s /usr/lib/libgcc_s.so.1 /usr/glibc-compat/lib
5252

53-
FROM node:20.18.1-alpine3.21 AS nodepackages
53+
FROM node:20.18.3-alpine3.21 AS nodepackages
5454

5555
#RUN npm config set unsafe-perm true
5656
RUN npm install -g \
5757
mocha \
5858
serverless
5959

60-
FROM node:20.18.1-alpine3.21 AS build
60+
FROM node:20.18.3-alpine3.21 AS build
6161

6262
COPY --from=gomplate /gomplate /bin/gomplate
6363
COPY --from=docker /usr/local/bin/docker /bin/docker

node-build/awscli-requirements.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
awscli==1.32.16
2-
botocore==1.34.16
3-
colorama==0.4.4
4-
docutils==0.16
1+
awscli==1.37.25
2+
botocore==1.36.25
3+
colorama==0.4.6
4+
docutils==0.21.2
55
jmespath==1.0.1
6-
pyasn1==0.5.1
7-
python-dateutil==2.8.2
8-
PyYAML==6.0.1
9-
rsa==4.7.2
10-
s3transfer==0.10.0
11-
six==1.16.0
6+
pyasn1==0.6.1
7+
python-dateutil==2.9.0.post0
8+
PyYAML==6.0.2
9+
rsa==4.9
10+
s3transfer==0.11.2
11+
six==1.17.0
1212
urllib3==2.0.7
13-
yamllint==1.33.0
13+
yamllint==1.35.1
1414
requests==2.31.0

py-build/Dockerfile

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
FROM hairyhenderson/gomplate:v3.8.0-slim AS gomplate
2-
FROM docker:23.0.1 AS docker
3-
FROM docker/compose:1.27.4 AS compose
4-
FROM vault:1.7.3 AS vault
5-
FROM hashicorp/terraform:1.0.0 AS terraform
6-
FROM hashicorp/packer:1.6.6 AS packer
7-
FROM prom/prometheus:v2.23.0 AS prometheus
8-
FROM prom/alertmanager:v0.21.0 AS alertmanager
9-
FROM mikefarah/yq:4.9.6 AS yq
10-
FROM lachlanevenson/k8s-kubectl:v1.20.1 AS kubectl
1+
FROM hairyhenderson/gomplate:v3.11.7-slim AS gomplate
2+
FROM docker:23.0.6 AS docker
3+
FROM docker/compose:1.29.2 AS compose
4+
FROM vault:1.13.3 AS vault
5+
FROM hashicorp/terraform:1.10.5 AS terraform
6+
FROM hashicorp/packer:1.12.0 AS packer
7+
FROM prom/prometheus:v2.55.1 AS prometheus
8+
FROM prom/alertmanager:v0.28.0 AS alertmanager
9+
FROM mikefarah/yq:4.45.1 AS yq
10+
FROM lachlanevenson/k8s-kubectl:v1.25.4 AS kubectl
1111
FROM lachlanevenson/k8s-helm:v3.10.2 AS helm2
12-
FROM lachlanevenson/k8s-helm:v3.8.0 AS helm
12+
FROM lachlanevenson/k8s-helm:v3.10.2 AS helm
1313

14-
FROM alpine:3.12.3 AS cc-test-reporter
14+
FROM alpine:3.21.3 AS cc-test-reporter
1515

1616
RUN wget -q -O /bin/cc-test-reporter https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64
1717
RUN chmod +x /bin/cc-test-reporter
1818

19-
FROM alpine:3.12.3 AS packages
19+
FROM alpine:3.21.3 AS packages
2020

2121
RUN apk add --no-cache \
2222
zip \

py-build/awscli-requirements.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
awscli==1.32.16
2-
botocore==1.34.16
3-
colorama==0.4.4
4-
docutils==0.17.1
1+
awscli==1.37.25
2+
botocore==1.36.25
3+
colorama==0.4.6
4+
docutils==0.21.2
55
jmespath==0.10.0
6-
pyasn1==0.4.8
7-
python-dateutil==2.8.1
6+
pyasn1==0.6.1
7+
python-dateutil==2.9.0.post0
88
PyYAML==6.0.2
9-
rsa==4.7.2
10-
s3transfer==0.4.2
11-
six==1.15.0
9+
rsa==4.9
10+
s3transfer==0.11.2
11+
six==1.17.0
1212
urllib3==1.26.5
13-
yamllint==1.26.1
13+
yamllint==1.35.1
1414
requests==2.31.0

0 commit comments

Comments
 (0)