1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-09-23 21:52:01 +02:00

Compare commits

...

8 Commits

Author SHA1 Message Date
dependabot[bot]
e5c6e65691 gems: update opentelemetry-instrumentation-rack requirement from ~> 0.22.0 to >= 0.22, < 0.28
Updates the requirements on [opentelemetry-instrumentation-rack](https://github.com/open-telemetry/opentelemetry-ruby-contrib) to permit the latest version.
- [Release notes](https://github.com/open-telemetry/opentelemetry-ruby-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-ruby-contrib/blob/main/instrumentation/rack/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-ruby-contrib/compare/opentelemetry-instrumentation-rack/v0.22.0...opentelemetry-instrumentation-rack/v0.25.0)

---
updated-dependencies:
- dependency-name: opentelemetry-instrumentation-rack
  dependency-version: 0.25.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-09-22 11:23:26 +00:00
renovate[bot]
5871ef4c18 project: update hadolint/hadolint to v2.13.1 2025-09-04 10:02:45 +02:00
dependabot[bot]
62e1843365 gems: update rubocop-rspec requirement from ~> 3.6.0 to ~> 3.7.0
Updates the requirements on [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) to permit the latest version.
- [Release notes](https://github.com/rubocop/rubocop-rspec/releases)
- [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop/rubocop-rspec/compare/v3.6.0...v3.7.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
2025-09-01 23:22:22 +02: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 10 additions and 10 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

@@ -13,7 +13,7 @@ task :solargraph do
end
# renovate: datasource=github-tags depName=hadolint/hadolint
hadolint_version = 'v2.12.0'
hadolint_version = 'v2.13.1'
# renovate: datasource=github-tags depName=aquasecurity/trivy
trivy_version = 'v0.61.0'

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

@@ -33,7 +33,7 @@ Gem::Specification.new do |s|
s.add_dependency 'logger', '>= 1.6', '< 1.8'
s.add_dependency 'metriks'
s.add_dependency 'opentelemetry-exporter-jaeger', '~> 0.22.0'
s.add_dependency 'opentelemetry-instrumentation-rack', '~> 0.22.0'
s.add_dependency 'opentelemetry-instrumentation-rack', '>= 0.22', '< 0.28'
s.add_dependency 'opentelemetry-sdk', '~> 1.2.0'
s.add_dependency 'rack', '~> 3.0'
s.add_dependency 'rackup', '~> 2'
@@ -44,8 +44,8 @@ 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 'rubocop-rspec', '~> 3.7.0'
s.add_development_dependency 'solargraph', '~> 0.55.0'
end