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 +36
-0
lines changed Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 3584
3584
"datasourceTemplate" : " github-releases" ,
3585
3585
"extractVersionTemplate" : " ^v(?<version>.+?)$"
3586
3586
},
3587
+ {
3588
+ "fileMatch" : [
3589
+ " ^tools/teller/manifest.yaml$"
3590
+ ],
3591
+ "matchStrings" : [
3592
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
3593
+ ],
3594
+ "depNameTemplate" : " tellerops/teller" ,
3595
+ "datasourceTemplate" : " github-releases" ,
3596
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
3597
+ },
3587
3598
{
3588
3599
"fileMatch" : [
3589
3600
" ^tools/terraform/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
+
5
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
6
+ ARG name
7
+ ARG version
8
+ RUN <<EOF
9
+ curl --silent --location --fail "https://github.com/tellerops/teller/releases/download/v${version}/teller_${version}_Linux_${arch}.tar.gz" \
10
+ | tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner \
11
+ teller
12
+ EOF
Original file line number Diff line number Diff line change
1
+ name : teller
2
+ version : " 1.5.6"
3
+ check : ${binary} version | head -1 | cut -d' ' -f2
4
+ tags :
5
+ - category/security
6
+ - type/cli
7
+ - lang/go
8
+ homepage : https://github.com/tellerops/teller
9
+ description : Cloud native secrets management for developers - never leave your command line for secrets.
10
+ renovate :
11
+ datasource : github-releases
12
+ package : tellerops/teller
13
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments