From 92c9d9b0648ba20fff54820d78ef1f31b6fa9d43 Mon Sep 17 00:00:00 2001 From: Davide Trainini Date: Fri, 5 May 2023 09:12:32 +0200 Subject: [PATCH 1/2] Create dependabot.yml Create dependabot configuration file to ensure GitHub Actions are always up to date --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d67f7ce --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +# Set update schedule for GitHub Actions + +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every day + interval: "daily" From 1cfb77387dca0ebcb9d2a5e00d13c46672da1675 Mon Sep 17 00:00:00 2001 From: Davide Trainini Date: Fri, 5 May 2023 09:36:15 +0200 Subject: [PATCH 2/2] Update dependabot.yml Specify on which days the checks are run --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d67f7ce..f729a41 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,5 +6,5 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - # Check for updates to GitHub Actions every day + # Check for updates to GitHub Actions every weekday (Monday to Friday) interval: "daily"