Compare commits

...

14 Commits

Author SHA1 Message Date
dependabot[bot] 581885daa0 gems: update rubocop-rspec requirement from ~> 2.26.1 to ~> 2.29.2
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/v2.26.1...v2.29.2)

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

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-16 22:18:52 +02:00
dependabot[bot] 267a96bf73 gems: update rubocop requirement from ~> 1.61.0 to ~> 1.63.5
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.61.0...v1.63.5)

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

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-16 21:46:44 +02:00
renovate[bot] 44a4a28094 project: update aquasecurity/trivy to v0.51.1 2024-05-16 21:46:29 +02:00
Christian Nicolai 3f962fa3bb docs: remove Depfu badge 2024-05-16 21:43:41 +02:00
Christian Nicolai 1171e0cb92
gems: disable Depfu for Dependabot since PR creation fails 2024-05-16 21:41:43 +02:00
cn 6a933194f3 project: fix Renovate config 2024-05-16 17:26:48 +02:00
cn e546d03d9f ci: add Renovate config validator 2024-05-16 17:26:48 +02:00
renovate[bot] 65d52675c9 project: update aquasecurity/trivy to v0.50.4 2024-04-25 10:58:03 +02:00
renovate[bot] 636d6f6379 project: update aquasecurity/trivy to v0.50.1 2024-03-28 02:26:20 +01:00
renovate[bot] 26381244aa project: update aquasecurity/trivy to v0.50.0 2024-03-21 10:26:13 +01:00
depfu[bot] d51937c68b gems: update rubocop to version 1.61.0 2024-03-01 16:13:13 +01:00
renovate[bot] dbc4073b66 project: update aquasecurity/trivy to v0.49.1 2024-02-08 10:49:32 +01:00
renovate[bot] d83f8d8e69 docker: update alpine Docker tag to v3.19.1 2024-02-01 10:19:22 +01:00
cn 95acdcbc70 gem: support Ruby 3.3 2024-01-18 23:14:41 +01:00
10 changed files with 46 additions and 8 deletions

13
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,13 @@
---
version: 2
updates:
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: "gems"
labels: ["dependabot"]
open-pull-requests-limit: 10
pull-request-branch-name:
separator: "-"

View File

@ -1,6 +1,6 @@
{
extends: [
"config:base",
"config:recommended",
":dependencyDashboard",
":prHourlyLimitNone",
":prConcurrentLimitNone",
@ -30,8 +30,9 @@
commitMessagePrefix: "ci: ",
},
],
regexManagers: [
customManagers: [
{
customType: "regex",
fileMatch: ["\.rb$", "^Rakefile$"],
matchStrings: [
"renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)\\s.*_version = '(?<currentValue>.*)'\\s"

View File

@ -21,6 +21,7 @@ jobs:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
@ -42,3 +43,13 @@ jobs:
echo "::add-matcher::.github/actionlint-matcher.json"
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
./actionlint
renovate-config-validator:
runs-on: ubuntu-latest
container:
image: ghcr.io/renovatebot/renovate
options: --user root
steps:
- uses: actions/checkout@v4
- name: Check Renovate config
run: renovate-config-validator --strict

View File

@ -102,3 +102,6 @@ RSpec/ExampleLength:
RSpec/MultipleExpectations:
Max: 20
RSpecRails:
Enabled: false

View File

@ -1,5 +1,15 @@
# Changelog
## 3.10.0
IMPROVEMENTS:
- add Ruby 3.3 support
OTHER:
- update base of Docker image to Alpine 3.19.0 (from 3.18.3 before)
## 3.9.2 (August 10th, 2023)
OTHER:

View File

@ -1,6 +1,6 @@
# dyndnsd.rb
![ci](https://github.com/cmur2/dyndnsd/workflows/ci/badge.svg) [![Dependencies](https://badges.depfu.com/badges/4f25da8493f7a29f652ac892fbf9227b/overview.svg)](https://depfu.com/github/cmur2/dyndnsd)
![ci](https://github.com/cmur2/dyndnsd/workflows/ci/badge.svg)
A small, lightweight and extensible DynDNS server written with Ruby and Rack.

View File

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

View File

@ -1,4 +1,4 @@
FROM alpine:3.19.0
FROM alpine:3.19.1
EXPOSE 5353 8080

View File

@ -1,4 +1,4 @@
FROM alpine:3.19.0
FROM alpine:3.19.1
EXPOSE 5353 8080

View File

@ -42,8 +42,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.60.0'
s.add_development_dependency 'rubocop', '~> 1.63.5'
s.add_development_dependency 'rubocop-rake', '~> 0.6.0'
s.add_development_dependency 'rubocop-rspec', '~> 2.26.1'
s.add_development_dependency 'rubocop-rspec', '~> 2.29.2'
s.add_development_dependency 'solargraph', '~> 0.50.0'
end