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 +41
-0
lines changed Expand file tree Collapse file tree 3 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 4575
4575
"datasourceTemplate" : " github-releases" ,
4576
4576
"extractVersionTemplate" : " ^v(?<version>.+?)$"
4577
4577
},
4578
+ {
4579
+ "fileMatch" : [
4580
+ " ^tools/yamllint/manifest.yaml$"
4581
+ ],
4582
+ "matchStrings" : [
4583
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
4584
+ ],
4585
+ "depNameTemplate" : " yamllint" ,
4586
+ "datasourceTemplate" : " pypi"
4587
+ },
4578
4588
{
4579
4589
"fileMatch" : [
4580
4590
" ^tools/yasu/manifest.yaml$"
Original file line number Diff line number Diff line change
1
+ #syntax=docker/dockerfile:1.5.1
2
+
3
+ ARG ref=main
4
+
5
+ FROM ghcr.io/nicholasdille/docker-setup/python:${ref} AS python
6
+
7
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
8
+ COPY --link --from=python / /
9
+ ENV PIPX_HOME=${prefix}${target}/libexec/pipx \
10
+ PIPX_BIN_DIR=${prefix}${target}/bin
11
+ ARG name
12
+ ARG version
13
+ RUN <<EOF
14
+ pipx install "yamllint==${version}"
15
+ ln --symbolic --relative --force "${prefix}${target}/libexec/pipx/venvs/yamllint/bin/yamllint" "${prefix}${target}/bin/yamllint"
16
+ sed -i "s|#\!${prefix}/|#\!/|" "${prefix}${target}/libexec/pipx/venvs/yamllint/bin/yamllint"
17
+ EOF
Original file line number Diff line number Diff line change
1
+ name : yamllint
2
+ version : " 1.29.0"
3
+ check : ${binary} --version | cut -d' ' -f2
4
+ dependencies :
5
+ - python
6
+ tags :
7
+ - category/development
8
+ - lang/python
9
+ - type/cli
10
+ homepage : https://github.com/adrienverge/yamllint
11
+ description : Linter for YAML files
12
+ renovate :
13
+ datasource : pypi
14
+ package : yamllint
You can’t perform that action at this time.
0 commit comments