From 42cdc2c55e7c0b3bcb417a3df41d78dc3bda3a6f Mon Sep 17 00:00:00 2001 From: "Peter A. Jonsson" Date: Wed, 1 May 2024 17:57:09 +0200 Subject: [PATCH] Add Dependabot support Dependabot will submit pull requests when packages get new versions released. This configuration is to keep the Github actions and the yarn packages up to date. Link to Dependabot documentation: https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..0a8ddbfd --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: +- package-ecosystem: github-actions + directory: "/" + schedule: + interval: "daily" + target-branch: "master" +- package-ecosystem: npm + directory: "/" + schedule: + interval: "daily" + target-branch: "master"