From bf4889042aa98f288e87cfbf054d90d07d6cc45c Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Wed, 7 Feb 2024 10:40:32 +0100 Subject: [PATCH] github: allow dependeabot to update github workflow actions Github usually updates their actions once a while and then warns about a node env getting deprecated in runs. Which is not super easily spotted by a developer until it's too late, so let's like npm let dependabot handle updating. --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 198d50c..d17ec69 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -21,3 +21,9 @@ updates: patternfly: patterns: - "@patternfly*" + + - package-ecosystem: "github-actions" + directory: "/" + open-pull-requests-limit: 3 + schedule: + interval: "weekly"