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 +38
-0
lines changed Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 314
314
"datasourceTemplate" : " github-releases" ,
315
315
"extractVersionTemplate" : " ^v(?<version>.+?)$"
316
316
},
317
+ {
318
+ "fileMatch" : [
319
+ " ^tools/argo/manifest.yaml$"
320
+ ],
321
+ "matchStrings" : [
322
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
323
+ ],
324
+ "depNameTemplate" : " argoproj/argo-workflows" ,
325
+ "datasourceTemplate" : " github-releases" ,
326
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
327
+ },
317
328
{
318
329
"fileMatch" : [
319
330
" ^tools/argocd/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 "https://github.com/argoproj/argo-workflows/releases/download/v${version}/argo-linux-${alt_arch}.gz" \
11
+ | gunzip \
12
+ >"${prefix}${target}/bin/argo"
13
+ chmod +x "${prefix}${target}/bin/argo"
14
+ "${prefix}${target}/bin/argo" completion bash >"${prefix}${target}/share/bash-completion/completions/argo"
15
+ "${prefix}${target}/bin/argo" completion zsh >"${prefix}${target}/share/zsh/vendor-completions/_argo"
16
+ EOF
Original file line number Diff line number Diff line change
1
+ name : argo
2
+ version : 3.4.0
3
+ tags :
4
+ - tag1
5
+ - tag2
6
+ homepage : https://github.com/argoproj/argo-workflows
7
+ description : Workflow engine for Kubernetes
8
+ renovate :
9
+ datasource : github-releases
10
+ package : argoproj/argo-workflows
11
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments