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

Compare commits

...

6 Commits

Author SHA1 Message Date
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
3 changed files with 5 additions and 5 deletions

View File

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

View File

@@ -69,7 +69,7 @@ end
namespace :bundle do namespace :bundle do
desc 'Check for vulnerabilities with bundler-audit' desc 'Check for vulnerabilities with bundler-audit'
task :audit do 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
end end

View File

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