feat: add autoupdate dependencies via Bazel Steward
diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml
new file mode 100644
index 0000000..4683cb1
--- /dev/null
+++ b/.github/workflows/dependencies.yml
@@ -0,0 +1,16 @@
+name: Update dependencies via Bazel Steward
+
+on:
+    workflow_dispatch:
+    schedule:
+        - cron: "30 5 * * *" # runs every day at 5:30 am
+
+jobs:
+    bazel-steward:
+        runs-on: ubuntu-latest
+        steps:
+            - uses: actions/checkout@v4
+              with:
+                  fetch-depth: 0
+            - uses: VirtusLab/bazel-steward@v1.7.1
+                  
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 83b4800..4303681 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,7 @@
 - Bump in the version of multiple dependencies, to accommodate for incompatible flags and ease future migrations
 - Autogenerate documentation for the bcr
 - Add 'rolling' to the CI bazel versions
+- Update dependencies notification via Bazel Steward
 
 ## [2.5.0]