From 6a1a4af85bff228d3e6769768462f1a9cc9f3337 Mon Sep 17 00:00:00 2001 From: clement-dufour Date: Sun, 2 Jun 2024 00:03:36 +0200 Subject: [PATCH] Add dependabot on Github actions --- .github/dependabot.yml | 10 ++++++++++ .github/workflows/build.yml | 5 +++++ 2 files changed, 15 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d3774d7 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +# Set update schedule for GitHub Actions +# https://docs.github.com/fr/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" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5bbfc40..4134fe2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,11 @@ name: Build image on: push: + branches: + - main + paths-ignore: + - '**/README.org' + - '.github/dependabot.yml' workflow_dispatch: schedule: - cron: '0 6 * * *' # every day at midnight