From: Tom Hromatka Date: Tue, 7 Feb 2023 23:28:50 +0000 (-0700) Subject: github: Add dependency checker action X-Git-Tag: v3.1.0~218 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a83e05513108022293aa2c40ee3a5bbfae18f451;p=thirdparty%2Flibcgroup.git github: Add dependency checker action Add an action, dependabot, that will periodically check GitHub Actions dependencies. It is currently configured to run weekly. If dependabot finds an update, it will open a pull request. See here for more details: https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot Signed-off-by: Tom Hromatka Reviewed-by: Kamalesh Babulal --- diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..916df5f8 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,22 @@ +# +# Dependabot Workflow for libcgroup +# +# Copyright (c) 2023 Oracle and/or its affiliates. +# Author: Tom Hromatka +# + +# based on this guide from GitHub: +# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot + +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly" + commit-message: + prefix: "RFE: " + labels: + - "enhancement"