1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2026-04-01 10:18:29 +02:00

Compare commits

..

7 Commits

Author SHA1 Message Date
renovate[bot]
4cfedc1372 project: update aquasecurity/trivy to v0.69.3 2026-04-01 01:03:22 +00:00
dependabot[bot]
4d8d8a0bae gems: update rubocop requirement from ~> 1.85.0 to ~> 1.86.0
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version.
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop/rubocop/compare/v1.85.0...v1.86.0)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-version: 1.86.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-23 13:35:13 +01:00
renovate[bot]
26eca5fab7 ci: update docker/build-push-action action to v7 2026-03-12 10:28:25 +01:00
renovate[bot]
8dcd3a25e6 ci: update docker/setup-buildx-action action to v4 2026-03-12 10:28:18 +01:00
renovate[bot]
52f4870756 ci: update docker/login-action action to v4 2026-03-05 10:12:02 +01:00
dependabot[bot]
ad82694f4f gems: update rubocop requirement from ~> 1.84.0 to ~> 1.85.0
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version.
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop/rubocop/compare/v1.84.0...v1.85.0)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-version: 1.85.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-02 14:57:01 +01:00
cn
c12000cffa gems: ignore irrelevant vulns in dev dependency solargraph 2026-02-26 22:17:58 +01:00
5 changed files with 8 additions and 8 deletions

View File

@@ -33,16 +33,16 @@ jobs:
# https://github.com/marketplace/actions/build-and-push-docker-images
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: cmur2
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push Docker image for dyndnsd ${{ env.DYNDNSD_VERSION }}
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: docker
build-args: |

View File

@@ -16,7 +16,7 @@ end
hadolint_version = 'v2.14.0'
# renovate: datasource=github-tags depName=aquasecurity/trivy
trivy_version = 'v0.68.2'
trivy_version = 'v0.69.3'
namespace :docker do
ci_image = 'cmur2/dyndnsd:ci'
@@ -69,7 +69,7 @@ end
namespace :bundle do
desc 'Check for vulnerabilities with bundler-audit'
task :audit do
sh 'bundler-audit check --ignore GHSA-vvfq-8hwr-qm4m' if !RUBY_VERSION.start_with?('3.0')
sh 'bundler-audit check --ignore GHSA-vvfq-8hwr-qm4m --ignore GHSA-wx95-c6cv-8532' if !RUBY_VERSION.start_with?('3.0')
end
end

View File

@@ -1,4 +1,4 @@
FROM alpine:3.22.3
FROM alpine:3.22.2
EXPOSE 5353 8080

View File

@@ -1,4 +1,4 @@
FROM alpine:3.22.3
FROM alpine:3.22.2
EXPOSE 5353 8080

View File

@@ -44,7 +44,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rack-test'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop', '~> 1.84.0'
s.add_development_dependency 'rubocop', '~> 1.86.0'
s.add_development_dependency 'rubocop-rake', '~> 0.7.1'
s.add_development_dependency 'rubocop-rspec', '~> 3.9.0'
s.add_development_dependency 'solargraph', '~> 0.58.1'