From b8ff53eaa6229ebef43c353e6417eef022aa6169 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl-Ian?= Date: Thu, 23 Oct 2025 11:29:48 +0200 Subject: [PATCH] Setup dependabot to update Github Actions and fix permissions issue --- .github/dependabot.yml | 6 ++++++ .github/workflows/unit-tests.yml | 2 ++ 2 files changed, 8 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5ace460 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 801b47d..899ac9a 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -1,4 +1,6 @@ name: Unit tests +permissions: + contents: read on: push: branches: [main, next]