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 +35
-0
lines changed Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 1901
1901
"datasourceTemplate" : " github-releases" ,
1902
1902
"extractVersionTemplate" : " ^v(?<version>.+?)$"
1903
1903
},
1904
+ {
1905
+ "fileMatch" : [
1906
+ " ^tools/mkcert/manifest.yaml$"
1907
+ ],
1908
+ "matchStrings" : [
1909
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
1910
+ ],
1911
+ "depNameTemplate" : " FiloSottile/mkcert" ,
1912
+ "datasourceTemplate" : " github-releases" ,
1913
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
1914
+ },
1904
1915
{
1905
1916
"fileMatch" : [
1906
1917
" ^tools/mp3binder/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
+ RUN <<EOF
10
+ curl --silent --location --output "${prefix}${target}/bin/mkcert" \
11
+ "https://github.com/FiloSottile/mkcert/releases/download/v${version}/mkcert-v${version}-linux-${alt_arch}"
12
+ chmod +x "${prefix}${target}/bin/mkcert"
13
+ EOF
Original file line number Diff line number Diff line change
1
+ name : mkcert
2
+ version : 1.4.4
3
+ tags :
4
+ - type/cli
5
+ - category/security
6
+ homepage : https://github.com/FiloSottile/mkcert
7
+ description : Simple zero-config tool to make locally trusted development certificates
8
+ renovate :
9
+ datasource : github-releases
10
+ package : FiloSottile/mkcert
11
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments