mirror of
https://github.com/cmur2/dyndnsd.git
synced 2025-08-09 04:48:39 +02:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
6c91c46378 | |||
e622ab292a | |||
507e6a36fd | |||
0a2afb1e4c | |||
![]() |
6e7d4ea985 | ||
809e2dd5d1 |
7
.github/renovate.json5
vendored
7
.github/renovate.json5
vendored
@@ -9,6 +9,7 @@
|
|||||||
schedule: ["before 8am on thursday"],
|
schedule: ["before 8am on thursday"],
|
||||||
branchPrefix: "renovate-",
|
branchPrefix: "renovate-",
|
||||||
dependencyDashboardHeader: "View repository job log [here](https://app.renovatebot.com/dashboard#github/cmur2/dyndnsd).",
|
dependencyDashboardHeader: "View repository job log [here](https://app.renovatebot.com/dashboard#github/cmur2/dyndnsd).",
|
||||||
|
separateMinorPatch: true,
|
||||||
commitMessagePrefix: "project: ",
|
commitMessagePrefix: "project: ",
|
||||||
commitMessageAction: "update",
|
commitMessageAction: "update",
|
||||||
commitMessageTopic: "{{depName}}",
|
commitMessageTopic: "{{depName}}",
|
||||||
@@ -19,6 +20,12 @@
|
|||||||
matchManagers: ["bundler"],
|
matchManagers: ["bundler"],
|
||||||
enabled: false,
|
enabled: false,
|
||||||
},
|
},
|
||||||
|
// prevent minor updates to Alpine 3.14 due to https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.14.0#faccessat2
|
||||||
|
{
|
||||||
|
matchManagers: ["dockerfile"],
|
||||||
|
matchUpdateTypes: ["minor"],
|
||||||
|
enabled: false,
|
||||||
|
},
|
||||||
// Commit message formats
|
// Commit message formats
|
||||||
{
|
{
|
||||||
matchDatasources: ["docker"],
|
matchDatasources: ["docker"],
|
||||||
|
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
@@ -31,13 +31,3 @@ jobs:
|
|||||||
- name: Lint and Test
|
- name: Lint and Test
|
||||||
run: |
|
run: |
|
||||||
bundle exec rake ci
|
bundle exec rake ci
|
||||||
|
|
||||||
# https://github.com/marketplace/actions/build-and-push-docker-images
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v1
|
|
||||||
|
|
||||||
- name: Test building Docker image for dyndnsd
|
|
||||||
uses: docker/build-push-action@v2
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: docker/ci/Dockerfile
|
|
||||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@@ -3,3 +3,4 @@
|
|||||||
pkg/*
|
pkg/*
|
||||||
.yardoc
|
.yardoc
|
||||||
hadolint
|
hadolint
|
||||||
|
trivy
|
||||||
|
12
CHANGELOG.md
12
CHANGELOG.md
@@ -1,5 +1,17 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 3.4.8 (December 11th, 2021)
|
||||||
|
|
||||||
|
OTHER:
|
||||||
|
|
||||||
|
- re-release 3.4.7 to rebuild Docker image with security vulnerabilities fixes
|
||||||
|
|
||||||
|
## 3.4.7 (November 19th, 2021)
|
||||||
|
|
||||||
|
OTHER:
|
||||||
|
|
||||||
|
- re-release 3.4.6 to rebuild Docker image with security vulnerabilities fixes
|
||||||
|
|
||||||
## 3.4.6 (November 19th, 2021)
|
## 3.4.6 (November 19th, 2021)
|
||||||
|
|
||||||
OTHER:
|
OTHER:
|
||||||
|
26
Rakefile
26
Rakefile
@@ -24,14 +24,32 @@ end
|
|||||||
# renovate: datasource=github-tags depName=hadolint/hadolint
|
# renovate: datasource=github-tags depName=hadolint/hadolint
|
||||||
hadolint_version = 'v2.8.0'
|
hadolint_version = 'v2.8.0'
|
||||||
|
|
||||||
desc 'Run hadolint for Dockerfile linting'
|
# renovate: datasource=github-tags depName=aquasecurity/trivy
|
||||||
task :hadolint do
|
trivy_version = 'v0.21.2'
|
||||||
sh "wget -q -O ./hadolint https://github.com/hadolint/hadolint/releases/download/#{hadolint_version}/hadolint-Linux-x86_64"
|
|
||||||
|
namespace :docker do
|
||||||
|
desc 'Lint Dockerfile'
|
||||||
|
task :lint do
|
||||||
|
sh "if [ ! -e ./hadolint ]; then wget -q -O ./hadolint https://github.com/hadolint/hadolint/releases/download/#{hadolint_version}/hadolint-Linux-x86_64; fi"
|
||||||
sh 'chmod a+x ./hadolint'
|
sh 'chmod a+x ./hadolint'
|
||||||
sh './hadolint --ignore DL3018 docker/Dockerfile'
|
sh './hadolint --ignore DL3018 docker/Dockerfile'
|
||||||
|
sh './hadolint --ignore DL3018 --ignore DL3028 docker/ci/Dockerfile'
|
||||||
|
end
|
||||||
|
|
||||||
|
desc 'Build CI Docker image'
|
||||||
|
task :build do
|
||||||
|
sh 'docker build -t cmur2/dyndnsd:ci -f docker/ci/Dockerfile .'
|
||||||
|
end
|
||||||
|
|
||||||
|
desc 'Scan CI Docker image for vulnerabilities'
|
||||||
|
task :scan do
|
||||||
|
ver = trivy_version.gsub('v', '')
|
||||||
|
sh "if [ ! -e ./trivy ]; then wget -q -O - https://github.com/aquasecurity/trivy/releases/download/v#{ver}/trivy_#{ver}_Linux-64bit.tar.gz | tar -xzf - trivy; fi"
|
||||||
|
sh './trivy cmur2/dyndnsd:ci'
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
task default: [:rubocop, :spec, 'bundle:audit', :solargraph]
|
task default: [:rubocop, :spec, 'bundle:audit', :solargraph]
|
||||||
|
|
||||||
desc 'Run all tasks desired for CI'
|
desc 'Run all tasks desired for CI'
|
||||||
task ci: ['solargraph:init', :default, :hadolint, :build]
|
task ci: ['solargraph:init', :default, 'docker:lint', :build, 'docker:build']
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
FROM alpine:3.13.6
|
FROM alpine:3.13.7
|
||||||
|
|
||||||
EXPOSE 5353 8080
|
EXPOSE 5353 8080
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
FROM alpine:3.13.6
|
FROM alpine:3.13.7
|
||||||
|
|
||||||
EXPOSE 5353 8080
|
EXPOSE 5353 8080
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
module Dyndnsd
|
module Dyndnsd
|
||||||
VERSION = '3.4.6'
|
VERSION = '3.4.8'
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user