diff --git a/Gemfile b/Gemfile
index 7a906f66d7172a625c0e32fa588a1c407c6fdf7e..627bf93855fa0ba97620bbf84c2852c4a2e72dd6 100644
--- a/Gemfile
+++ b/Gemfile
@@ -5,7 +5,7 @@ ruby "3.3.6"
 gem "rails", "~> 8.0.1"
 
 # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
-gem "sprockets-rails"
+gem "sprockets-rails", "> 0"
 
 # Use sqlite3 as the database for Active Record
 gem "sqlite3", "~> 2.5"
@@ -29,7 +29,7 @@ end
 
 group :development do
   # Use console on exceptions pages [https://github.com/rails/web-console]
-  gem "web-console"
+  gem "web-console", "> 0"
 
   # Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
   # gem "rack-mini-profiler"
@@ -46,7 +46,7 @@ end
 
 gem "solid_queue", "~> 1.1"
 
-gem "httparty"
+gem "httparty", "> 0"
 
 gem "tailwindcss-rails", "~> 3.1"
 
diff --git a/Gemfile.lock b/Gemfile.lock
index c50af601bf5e11e9102cc3dec46102fe9aa12d1f..4cc6dc45bcdd43fb8a9ce518ecd33e9848ebf7f7 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -340,7 +340,7 @@ DEPENDENCIES
   debug
   devise (~> 4.9)
   hotwire-rails (~> 0.1.3)
-  httparty
+  httparty (> 0)
   icalendar (~> 2.10)
   importmap-rails (~> 2.0)
   puma (>= 5.0)
@@ -348,12 +348,12 @@ DEPENDENCIES
   redis (>= 4.0.1)
   selenium-webdriver
   solid_queue (~> 1.1)
-  sprockets-rails
+  sprockets-rails (> 0)
   sqlite3 (~> 2.5)
   tailwindcss-rails (~> 3.1)
   telegram-bot-ruby (~> 2.0)
   tzinfo-data
-  web-console
+  web-console (> 0)
 
 RUBY VERSION
    ruby 3.3.6p108
diff --git a/renovate.json b/renovate.json
new file mode 100644
index 0000000000000000000000000000000000000000..d1964a07b6a58a505b2ceb10a0b2475cc4a0300e
--- /dev/null
+++ b/renovate.json
@@ -0,0 +1,3 @@
+{
+  "extends": ["config:recommended", "group:rubyOnRails"]
+}