From f521c70eed2c6d7834ecb1633e970e70f0cd93bf Mon Sep 17 00:00:00 2001 From: Raj Gupta <150777419+Raj-G07@users.noreply.github.com> Date: Fri, 12 Sep 2025 12:28:33 +0530 Subject: [PATCH 1/3] Create dependabot.yml --- .github/dependabot.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..7ce58b4e0 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,24 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + # Keep npm dependencies up to date + - package-ecosystem: "npm" + directory: "/" # root package.json + schedule: + interval: "weekly" + + # Keep GitHub Actions up to date + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + + # Keep Docker images up to date + - package-ecosystem: "docker" + directory: "/docker" + schedule: + interval: "weekly" From 70b1b020fa22e2889cb296ca250474ff61ff9d8d Mon Sep 17 00:00:00 2001 From: Raj Gupta <150777419+Raj-G07@users.noreply.github.com> Date: Sun, 21 Sep 2025 16:55:07 +0530 Subject: [PATCH 2/3] Update Changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c03d2d754..30c6971a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased +- Added dependabot for version update ### Changed From 1b7cb1a3e16b64060a788912343544944a0ca67d Mon Sep 17 00:00:00 2001 From: Raj Gupta <150777419+Raj-G07@users.noreply.github.com> Date: Sun, 21 Sep 2025 17:00:03 +0530 Subject: [PATCH 3/3] Format check --- .github/dependabot.yml | 18 +++++++++--------- CHANGELOG.md | 1 + 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7ce58b4e0..94da15da2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,19 +6,19 @@ version: 2 updates: # Keep npm dependencies up to date - - package-ecosystem: "npm" - directory: "/" # root package.json + - package-ecosystem: 'npm' + directory: '/' # root package.json schedule: - interval: "weekly" + interval: 'weekly' # Keep GitHub Actions up to date - - package-ecosystem: "github-actions" - directory: "/" + - package-ecosystem: 'github-actions' + directory: '/' schedule: - interval: "weekly" + interval: 'weekly' # Keep Docker images up to date - - package-ecosystem: "docker" - directory: "/docker" + - package-ecosystem: 'docker' + directory: '/docker' schedule: - interval: "weekly" + interval: 'weekly' diff --git a/CHANGELOG.md b/CHANGELOG.md index 30c6971a2..bac3b3b1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased + - Added dependabot for version update ### Changed