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 543
543
"depNameTemplate" : " Mic92/cntr" ,
544
544
"datasourceTemplate" : " github-releases"
545
545
},
546
+ {
547
+ "fileMatch" : [
548
+ " ^tools/colima/manifest.yaml$"
549
+ ],
550
+ "matchStrings" : [
551
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
552
+ ],
553
+ "depNameTemplate" : " abiosoft/colima" ,
554
+ "datasourceTemplate" : " github-releases" ,
555
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
556
+ },
546
557
{
547
558
"fileMatch" : [
548
559
" ^tools/conftest/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/colima" \
11
+ "https://github.com/abiosoft/colima/releases/download/v${version}/colima-Linux-${arch}"
12
+ chmod +x "${prefix}${target}/bin/colima"
13
+ "${prefix}${target}/bin/colima" completion bash >"${prefix}${target}/share/bash-completion/completions/colima"
14
+ "${prefix}${target}/bin/colima" completion fish >"${prefix}${target}/share/fish/vendor_completions.d/colima.fish"
15
+ "${prefix}${target}/bin/colima" completion zsh >"${prefix}${target}/share/zsh/vendor-completions/_colima"
16
+ EOF
Original file line number Diff line number Diff line change
1
+ name : colima
2
+ version : 0.4.5
3
+ tags :
4
+ - type/cli
5
+ - category/development
6
+ homepage : https://github.com/abiosoft/colima
7
+ description : Container runtimes on macOS (and Linux) with minimal setup
8
+ renovate :
9
+ datasource : github-releases
10
+ package : abiosoft/colima
11
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments