From 4c4f405f62e12761bbf7fb82823f0efe57702268 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2026 00:24:12 +0000 Subject: [PATCH 1/2] build(deps): bump actions/attest-build-provenance from 4.1.0 to 4.1.1 Bumps [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) from 4.1.0 to 4.1.1. - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](https://github.com/actions/attest-build-provenance/compare/a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32...0f67c3f4856b2e3261c31976d6725780e5e4c373) --- updated-dependencies: - dependency-name: actions/attest-build-provenance dependency-version: 4.1.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b62c493..ce0d29f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -100,7 +100,7 @@ jobs: category: trivy-api - name: Attest build provenance (API) - uses: actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # v4.1.0 + uses: actions/attest-build-provenance@0f67c3f4856b2e3261c31976d6725780e5e4c373 # v4.1.1 with: subject-name: ${{ env.API_IMAGE }} subject-digest: ${{ steps.build.outputs.digest }} @@ -179,7 +179,7 @@ jobs: category: trivy-frontend - name: Attest build provenance (frontend) - uses: actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # v4.1.0 + uses: actions/attest-build-provenance@0f67c3f4856b2e3261c31976d6725780e5e4c373 # v4.1.1 with: subject-name: ${{ env.FRONTEND_IMAGE }} subject-digest: ${{ steps.build.outputs.digest }} From 389f52fa159d54b1f04362c209f0af2eac911af4 Mon Sep 17 00:00:00 2001 From: Pragadeesh122 Date: Thu, 16 Jul 2026 19:24:15 -0500 Subject: [PATCH 2/2] fix(ci): include all workflow files in change detection filters MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dependabot PRs that only modify .github/workflows/ files were being blocked by the branch ruleset — the changes job's path filters only matched pr.yml, so downstream jobs were skipped and the required-status- checks rule never saw them as passing. Replace the per-filter 'pr.yml' entries with '.github/workflows/**' so that any workflow change triggers the relevant validation job. --- .github/workflows/pr.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 7dd2035..16351e9 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -48,13 +48,13 @@ jobs: - 'pyproject.toml' - 'uv.lock' - 'Dockerfile' - - '.github/workflows/pr.yml' + - '.github/workflows/**' frontend: - 'frontend/**' - - '.github/workflows/pr.yml' + - '.github/workflows/**' helm: - 'helm/agenticrag/**' - - '.github/workflows/pr.yml' + - '.github/workflows/**' # --------------------------------------------------------------------------- # API tests — sqlite in-memory fixtures, no external deps required.