1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-09-05 15:13:03 +02:00

Compare commits

..

6 Commits

Author SHA1 Message Date
dependabot[bot]
133e56777b gems: update async requirement from ~> 1.31.0 to >= 1.31, < 2.29
Updates the requirements on [async](https://github.com/socketry/async) to permit the latest version.
- [Release notes](https://github.com/socketry/async/releases)
- [Changelog](https://github.com/socketry/async/blob/main/releases.md)
- [Commits](https://github.com/socketry/async/compare/v1.31.0...v2.28.1)

---
updated-dependencies:
- dependency-name: async
  dependency-version: 2.28.1
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-09-01 18:50:09 +00:00
dependabot[bot]
7def8ea8a6 gems: update rubocop requirement from ~> 1.79.1 to ~> 1.80.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.79.1...v1.80.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
2025-08-26 00:17:58 +02:00
renovate[bot]
9b553eb117 ci: update actions/checkout action to v5 2025-08-14 10:24:52 +02:00
dependabot[bot]
5e6f0e1e33 gems: update rubocop requirement from ~> 1.78.0 to ~> 1.79.1
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.78.0...v1.79.1)

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

Signed-off-by: dependabot[bot] <support@github.com>
2025-08-04 19:50:27 +02:00
renovate[bot]
01175ec8f9 docker: update alpine Docker tag to v3.22.1 2025-07-17 10:18:27 +02:00
dependabot[bot]
8d2c2f9c90 gems: update rubocop requirement from ~> 1.77.0 to ~> 1.78.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.77.0...v1.78.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
2025-07-14 19:02:43 +02:00
6 changed files with 9 additions and 9 deletions

View File

@@ -11,7 +11,7 @@ jobs:
release-dockerimage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Extract dyndnsd version from tag name
run: |

View File

@@ -23,7 +23,7 @@ jobs:
- '3.3'
- '3.4'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
@@ -37,7 +37,7 @@ jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Check workflow files
run: |
echo "::add-matcher::.github/actionlint-matcher.json"
@@ -50,6 +50,6 @@ jobs:
image: ghcr.io/renovatebot/renovate
options: --user root
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Check Renovate config
run: renovate-config-validator --strict

View File

@@ -16,7 +16,7 @@ end
hadolint_version = 'v2.12.0'
# renovate: datasource=github-tags depName=aquasecurity/trivy
trivy_version = 'v0.61.1'
trivy_version = 'v0.61.0'
namespace :docker do
ci_image = 'cmur2/dyndnsd:ci'

View File

@@ -1,4 +1,4 @@
FROM alpine:3.22.0
FROM alpine:3.22.1
EXPOSE 5353 8080

View File

@@ -1,4 +1,4 @@
FROM alpine:3.22.0
FROM alpine:3.22.1
EXPOSE 5353 8080

View File

@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 3.0'
s.add_dependency 'async', '~> 1.31.0'
s.add_dependency 'async', '>= 1.31', '< 2.29'
s.add_dependency 'async-dns', '~> 1.3.0'
s.add_dependency 'base64', '~> 0.2.0' # needed for async
s.add_dependency 'logger', '>= 1.6', '< 1.8'
@@ -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.77.0'
s.add_development_dependency 'rubocop', '~> 1.80.0'
s.add_development_dependency 'rubocop-rake', '~> 0.7.1'
s.add_development_dependency 'rubocop-rspec', '~> 3.6.0'
s.add_development_dependency 'solargraph', '~> 0.55.0'