1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-06-26 02:30:22 +02:00

ci: configure Renovate

This commit is contained in:
Renovate Bot
2021-04-16 20:27:22 +00:00
committed by cn
parent ad01f9a9dd
commit 4987ec2264
2 changed files with 43 additions and 1 deletions

View File

@ -21,9 +21,12 @@ namespace :solargraph do
end
end
# renovate: datasource=github-tags depName=hadolint/hadolint
hadolint_version = 'v1.18.0'
desc 'Run hadolint for Dockerfile linting'
task :hadolint do
sh 'docker run --rm -i hadolint/hadolint:v1.18.0 hadolint --ignore DL3018 - < docker/Dockerfile'
sh "docker run --rm -i hadolint/hadolint:#{hadolint_version} hadolint --ignore DL3018 - < docker/Dockerfile"
end
task default: [:rubocop, :spec, 'bundle:audit', :solargraph]