We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ec0432 commit 9f0e594Copy full SHA for 9f0e594
runner.Dockerfile
@@ -11,7 +11,8 @@ RUN set -ex; \
11
export DEBIAN_FRONTEND=noninteractive; \
12
runDeps='ca-certificates curl git jq unzip findutils patch xz-utils'; \
13
buildDeps='gpg apt-transport-https'; \
14
- apt-get update && apt-get install -y $runDeps $buildDeps --no-install-recommends; \
+ apt-get update -o APT::Update::Error-Mode=any; \
15
+ apt-get install -y $runDeps $buildDeps --no-install-recommends; \
16
\
17
echo "workaround for y-helm failing in github actions due to get.helm.sh SSL error"; \
18
curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | tee /usr/share/keyrings/helm.gpg > /dev/null; \
0 commit comments