From bc9060e18ddebd9370ddad10495edb7279f9c9aa Mon Sep 17 00:00:00 2001 From: Anil Belur Date: Sat, 14 Mar 2026 08:30:45 +1000 Subject: [PATCH 1/2] ci: add dependabot configuration for GitHub Actions Enable Dependabot version updates for github-actions ecosystem to automatically track and propose updates for SHA-pinned action references in workflow files. Signed-off-by: Anil Belur Signed-off-by: Anil Belur --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..db5207a44 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +--- +# SPDX-FileCopyrightText: 2026 The Linux Foundation +# SPDX-License-Identifier: Apache-2.0 + +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" From 10d19d243d5c4e6228b3c605f1f5a9876d345411 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Mar 2026 22:31:58 +0000 Subject: [PATCH 2/2] Chore(deps): Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/gerrit-verify.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gerrit-verify.yaml b/.github/workflows/gerrit-verify.yaml index fce5c303a..bae7634cf 100644 --- a/.github/workflows/gerrit-verify.yaml +++ b/.github/workflows/gerrit-verify.yaml @@ -87,7 +87,7 @@ jobs: - name: Check if running in ACT if: ${{ env.ACT == 'true' }} run: echo "Running local tox build via ACT" - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 if: ${{ env.ACT == 'true' }} - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 if: ${{ env.ACT == 'true' }}