From d99c4279fe2d8129351e0a3973b79bea51406396 Mon Sep 17 00:00:00 2001 From: hisco <39222286+hisco@users.noreply.github.com> Date: Wed, 1 Jul 2026 16:39:31 +0300 Subject: [PATCH 1/2] chore: upgrade GitHub Actions dependencies - Bump actions/checkout from v4 to v7 in release.yml and test.yml Claude-Session: https://claude.ai/code/session_011T9ASy4VmRoYrnuTsLd9oU --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 083f550..48a4067 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: # semantic-release walks the full commit history to find the # previous release tag and analyze commits since. Without a deep diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d2e807c..2bf9c00 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: # hours waiting for the platform timeout. timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Install yq v4 (linux) if: runner.os == 'Linux' @@ -44,7 +44,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Run action against fixture (buildContext present) id: cfg From 1736840bbf515844ff4687bc972b8ca3583e7465 Mon Sep 17 00:00:00 2001 From: hisco <39222286+hisco@users.noreply.github.com> Date: Wed, 1 Jul 2026 17:53:59 +0300 Subject: [PATCH 2/2] ci: add Dependabot for GitHub Actions --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..f6faee6 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + groups: + github-actions: + patterns: + - "*"