From 6af1df074e4074f70713b75db6c630aba4cc2587 Mon Sep 17 00:00:00 2001 From: Padraig Gleeson Date: Mon, 27 Jul 2026 18:27:06 +0100 Subject: [PATCH 1/2] Upgrade GitHub Actions to use version 7 --- .github/workflows/non-omv.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/non-omv.yml b/.github/workflows/non-omv.yml index 23e1561..e663121 100644 --- a/.github/workflows/non-omv.yml +++ b/.github/workflows/non-omv.yml @@ -17,10 +17,10 @@ jobs: runs-on: [ ubuntu-latest, macos-latest ] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} From 7f588ef31c3d771b003c1333ff74a7d355d1e50d Mon Sep 17 00:00:00 2001 From: Padraig Gleeson Date: Thu, 30 Jul 2026 11:26:24 +0100 Subject: [PATCH 2/2] Add dependabot yaml --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..28cb43e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +# Source - https://stackoverflow.com/a/78380165 +# Posted by Stefan, modified by community. See post 'Timeline' for change history +# Retrieved 2026-04-14, License - CC BY-SA 4.0 + +# Set update schedule for GitHub Actions + +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly"