From 75fc907820e3e7c118abc9a804c824e196dd1ea7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 May 2026 16:09:11 +0000 Subject: [PATCH 1/2] chore(deps): bump actions/attest-build-provenance from 3.2.0 to 4.1.0 Bumps [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) from 3.2.0 to 4.1.0. - [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/v3.2.0...v4.1.0) --- updated-dependencies: - dependency-name: actions/attest-build-provenance dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index e684225..17810d1 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -115,7 +115,7 @@ jobs: - name: Attest Build Provenance if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && github.event.inputs.dry_run == 'false') - uses: actions/attest-build-provenance@v3.2.0 + uses: actions/attest-build-provenance@v4.1.0 with: subject-path: "dist/**/*.tar.gz" From 3fed6eaf5a38010eb2975b53ebe8867de37b15fa Mon Sep 17 00:00:00 2001 From: Yordis Prieto Date: Wed, 24 Jun 2026 21:42:13 -0400 Subject: [PATCH 2/2] refactor(ci): migrate to actions/attest actions/attest-build-provenance v4 is now a thin wrapper on actions/attest; upstream guidance is to call the underlying action directly for new and migrated workflows. Signed-off-by: Yordis Prieto --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 17810d1..33e1c6a 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -115,7 +115,7 @@ jobs: - name: Attest Build Provenance if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && github.event.inputs.dry_run == 'false') - uses: actions/attest-build-provenance@v4.1.0 + uses: actions/attest@v4.1.0 with: subject-path: "dist/**/*.tar.gz"