From 038584e5af9e7148c3a4bdef78e161a8c39e612f Mon Sep 17 00:00:00 2001 From: timngyn Date: Fri, 3 May 2024 15:54:04 -0700 Subject: [PATCH 1/2] Add github-actions as a package ecosystem for dependabot --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 23fac54df61..fcd5679c575 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,3 +7,9 @@ updates: allow: # Allow updates for any packages starting with "@aws-amplify" - dependency-name: "@aws-amplify*" + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + # Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.) + directory: "/" + schedule: + interval: "weekly" From 610ceeed33384d45f4848060b6ddea60d010fd02 Mon Sep 17 00:00:00 2001 From: timngyn Date: Fri, 3 May 2024 15:56:37 -0700 Subject: [PATCH 2/2] Update interval for github-actions to monthly --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fcd5679c575..71a4f5c690c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,4 +12,4 @@ updates: # Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.) directory: "/" schedule: - interval: "weekly" + interval: "monthly"