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 +40
-0
lines changed Expand file tree Collapse file tree 3 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 3077
3077
"datasourceTemplate" : " github-releases" ,
3078
3078
"extractVersionTemplate" : " ^v(?<version>.+?)$"
3079
3079
},
3080
+ {
3081
+ "fileMatch" : [
3082
+ " ^tools/witness/manifest.yaml$"
3083
+ ],
3084
+ "matchStrings" : [
3085
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
3086
+ ],
3087
+ "depNameTemplate" : " testifysec/witness" ,
3088
+ "datasourceTemplate" : " github-releases" ,
3089
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
3090
+ },
3080
3091
{
3081
3092
"fileMatch" : [
3082
3093
" ^tools/wksctl/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
+ # tarball
10
+ RUN <<EOF
11
+ curl --silent --location "https://github.com/testifysec/witness/releases/download/v${version}/witness_${version}_linux_amd64.tar.gz" \
12
+ | tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner \
13
+ witness
14
+ "${prefix}${target}/bin/witness" completion bash >"${prefix}${target}/share/bash-completion/completions/witness"
15
+ "${prefix}${target}/bin/witness" completion fish >"${prefix}${target}/share/fish/vendor_completions.d/witness.fish"
16
+ "${prefix}${target}/bin/witness" completion zsh >"${prefix}${target}/share/zsh/vendor-completions/_witness"
17
+ EOF
Original file line number Diff line number Diff line change
1
+ name : witness
2
+ version : 0.1.11
3
+ check : ${binary} version | cut -d' ' -f2 | cut -d- -f1 | tr -d v
4
+ tags :
5
+ - type/
6
+ - category/security
7
+ homepage : https://github.com/testifysec/witness
8
+ description : Pluggable framework for software supply chain risk management
9
+ renovate :
10
+ datasource : github-releases
11
+ package : testifysec/witness
12
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments