Skip to content

Commit 7256990

Browse files
authoredMar 6, 2025··
feat: add gitlab cli (#589)
* fix(dod-certs): fix dod cert trust * feat: add gitlab cli
1 parent cd77af4 commit 7256990

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎.tool-versions

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ dagger 0.16.2
1111
flux2 2.5.1
1212
# renovate: datasource=github-tags depName=gruntwork-io/git-xargs
1313
git-xargs 0.1.15
14+
# renovate: datasource=git-tags depName=https://gitlab.com/gitlab-org/cli.git
15+
glab 1.53.0
1416
golang 1.24.0
1517
golangci-lint 1.64.6
1618
# renovate: datasource=github-tags depName=anchore/grype

‎Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ RUN set -e && \
5656
curl -o "$ZIP_FILE" "$URL" && \
5757
mkdir -p "$EXTRACT_DIR" && \
5858
unzip -o "$ZIP_FILE" -d "$EXTRACT_DIR" && \
59-
CERTS_DIR=$(find "$EXTRACT_DIR" -type d -name "certificates_pkcs7*") && \
59+
CERTS_DIR=$(find "$EXTRACT_DIR" -type d -name "Certificates_PKCS7*") && \
6060
cd "$CERTS_DIR" && \
6161
for p7b_file in *.p7b; do \
6262
if [ "$(openssl asn1parse -inform DER -in "$p7b_file" 2>/dev/null)" ]; then \

0 commit comments

Comments
 (0)
Please sign in to comment.