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

chore(deps): update dependency mikefarah/yq to v4.44.2 (k8s-tools/dockerfile) (master) #962

Merged
merged 1 commit into from
Aug 11, 2024
Merged
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 k8s-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# hadolint ignore=DL3018,DL3019
RUN apk update && apk add --no-cache ca-certificates \
git openssl wget bash
RUN update-ca-certificates 2>/dev/null || true

Check failure on line 14 in k8s-tools/Dockerfile

View workflow job for this annotation

GitHub Actions / build-on-merge-request

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.

# renovate: datasource=github-releases depName=mozilla/sops
ARG SOPS_VERSION=3.8.1
Expand All @@ -22,7 +22,7 @@
&& chown root:root /usr/local/bin/sops

# renovate: datasource=github-releases depName=mikefarah/yq
ARG YQ_VERSION=4.44.1
ARG YQ_VERSION=4.44.2
ARG YQ_BINARY=yq_linux_amd64

RUN wget --progress=dot:giga https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/${YQ_BINARY} -O /usr/bin/yq &&\
Expand Down Expand Up @@ -52,9 +52,9 @@
&& apk add -Uuv --no-cache --update python3 py3-pip \
&& pip3 install --no-cache-dir --upgrade pip

RUN helm plugin install https://github.com/futuresimple/helm-secrets

Check failure on line 55 in k8s-tools/Dockerfile

View workflow job for this annotation

GitHub Actions / build-on-merge-request

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.

RUN ln -sfn /opt/bats/bin/bats /usr/sbin/bats \

Check failure on line 57 in k8s-tools/Dockerfile

View workflow job for this annotation

GitHub Actions / build-on-merge-request

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.
&& ln -sfn /usr/local/bin/kubectl /usr/sbin/kubectl \
&& ln -sfn /usr/local/bin/helm /usr/sbin/helm \
&& ln -sfn /usr/local/bin/sops /usr/sbin/sops \
Expand Down
Loading