Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Renovate Bot
renovate
Commits
4883bb90
Unverified
Commit
4883bb90
authored
5 years ago
by
Michael Kriese
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
chore: reconfigure renovate (#5725)
parent
a15879fc
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dockerfile
+7
-0
7 additions, 0 deletions
Dockerfile
renovate.json
+10
-1
10 additions, 1 deletion
renovate.json
with
17 additions
and
1 deletion
Dockerfile
+
7
−
0
View file @
4883bb90
...
...
@@ -48,6 +48,7 @@ FROM base as final-base
RUN
groupadd
-g
999 docker
RUN
usermod
-aG
docker ubuntu
# renovate: datasource=github-releases depName=docker/docker-ce versioning=docker
ENV
DOCKER_VERSION=19.03.5
RUN
curl
-fsSLO
https://download.docker.com/linux/static/stable/x86_64/docker-
${
DOCKER_VERSION
}
.tgz
\
...
...
@@ -71,6 +72,8 @@ RUN apt-get update && \
## Gradle (needs java-jre, installed above)
# renovate: datasource=gradle-version depName=gradle versioning=maven
ENV
GRADLE_VERSION 6.2
RUN
wget
--no-verbose
https://services.gradle.org/distributions/gradle-
$GRADLE_VERSION
-bin
.zip
&&
\
...
...
@@ -112,6 +115,7 @@ RUN echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu bionic main" > /etc/apt
apt-get
-y
install
php7.4-cli php7.4-mbstring
&&
\
rm
-rf
/var/lib/apt/lists/
*
# renovate: datasource=github-releases depName=composer/composer
ENV
COMPOSER_VERSION=1.9.3
RUN
php
-r
"copy('https://github.com/composer/composer/releases/download/
$COMPOSER_VERSION
/composer.phar', '/usr/local/bin/composer');"
...
...
@@ -156,6 +160,8 @@ RUN curl --silent https://bootstrap.pypa.io/get-pip.py | python
# CocoaPods
RUN
apt-get update
&&
apt-get
install
-y
ruby ruby2.5-dev
&&
rm
-rf
/var/lib/apt/lists/
*
RUN
ruby
--version
# renovate: datasource=rubygems depName=cocoapods versioning=ruby
ENV
COCOAPODS_VERSION 1.9.0
RUN
gem
install
--no-rdoc
--no-ri
cocoapods
-v
${
COCOAPODS_VERSION
}
...
...
@@ -187,6 +193,7 @@ RUN pip install --user pipenv
# Poetry
# renovate: datasource=github-releases depName=python-poetry/poetry
ENV
POETRY_VERSION=1.0.0
RUN
curl
-sSL
https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
--version
${
POETRY_VERSION
}
...
...
This diff is collapsed.
Click to expand it.
renovate.json
+
10
−
1
View file @
4883bb90
...
...
@@ -10,7 +10,7 @@
],
"lockFileMaintenance"
:
{
"enabled"
:
true
,
"schedule"
:
"at any time"
,
"schedule"
:
[
"at any time"
]
,
"stabilityDays"
:
0
,
"masterIssueApproval"
:
true
},
...
...
@@ -55,5 +55,14 @@
"paths"
:
[
"**/__fixtures__/**"
],
"enabled"
:
false
}
],
"regexManagers"
:
[
{
"fileMatch"
:
[
"^Dockerfile$"
],
"matchStrings"
:
[
"datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?
\\
sENV .*?_VERSION=(?<currentValue>.*)
\\
s"
],
"versioningTemplate"
:
"{{#if versioning}}{{versioning}}{{else}}semver{{/if}}"
}
]
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment