This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +39
-0
lines changed Expand file tree Collapse file tree 3 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 372
372
"datasourceTemplate" : " github-releases" ,
373
373
"extractVersionTemplate" : " ^v(?<version>.+?)$"
374
374
},
375
+ {
376
+ "fileMatch" : [
377
+ " ^tools/cfssl/manifest.yaml$"
378
+ ],
379
+ "matchStrings" : [
380
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
381
+ ],
382
+ "depNameTemplate" : " cloudflare/cfssl" ,
383
+ "datasourceTemplate" : " github-releases" ,
384
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
385
+ },
375
386
{
376
387
"fileMatch" : [
377
388
" ^tools/chekr/manifest.yaml$"
Original file line number Diff line number Diff line change
1
+ #syntax=docker/dockerfile:1.4.3
2
+
3
+ ARG ref=main
4
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
5
+
6
+ ARG name
7
+ ARG version
8
+
9
+ ARG BINARIES="cfssl-bundle cfssl-certinfo cfssl-newkey cfssl-scan cfssljson cfssl mkbundle multirootca"
10
+ RUN <<EOF
11
+ for BINARY in ${BINARIES}; do
12
+ curl --silent --location --output "${prefix}${target}/bin/${BINARY}" \
13
+ "https://github.com/cloudflare/cfssl/releases/download/v${version}/${BINARY}_${version}_linux_amd64"
14
+ chmod +x "${prefix}${target}/bin/${BINARY}"
15
+ done
16
+ EOF
Original file line number Diff line number Diff line change
1
+ name : cfssl
2
+ version : 1.6.3
3
+ check : " "
4
+ tags :
5
+ - type/cli
6
+ - category/security
7
+ homepage : https://github.com/cloudflare/cfssl
8
+ description : Cloudflare's PKI and TLS toolkit
9
+ renovate :
10
+ datasource : github-releases
11
+ package : cloudflare/cfssl
12
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments