From 0984835b1bfbc0029cceaa2bc5c25a141f9ecade Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 25 Jul 2026 03:03:23 +0000 Subject: [PATCH 1/2] fix(deps): bump ossf/scorecard-action from 2.4.3 to 2.4.4 Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 2.4.3 to 2.4.4. - [Release notes](https://github.com/ossf/scorecard-action/releases) - [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md) - [Commits](https://github.com/ossf/scorecard-action/compare/v2.4.3...v2.4.4) --- updated-dependencies: - dependency-name: ossf/scorecard-action dependency-version: 2.4.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/scorecard.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index e32ab86..3a250db 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@v7 with: persist-credentials: false - - uses: ossf/scorecard-action@v2.4.3 + - uses: ossf/scorecard-action@v2.4.4 with: results_file: scorecard-results.sarif results_format: sarif From 83ac2be31f1cf502594167ed81949448d18c7cb3 Mon Sep 17 00:00:00 2001 From: Daedalus <268206840+daedalus-omt@users.noreply.github.com> Date: Sat, 25 Jul 2026 03:39:48 +0000 Subject: [PATCH 2/2] test: align scorecard action contract Signed-off-by: Daedalus Signed-off-by: Daedalus <268206840+daedalus-omt@users.noreply.github.com> --- test/security-workflow.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/security-workflow.test.ts b/test/security-workflow.test.ts index 95b84aa..89eb35b 100644 --- a/test/security-workflow.test.ts +++ b/test/security-workflow.test.ts @@ -45,7 +45,7 @@ describe("security and reusable workflows", () => { }); expect(workflow.jobs.scorecard["runs-on"]).toBe("ubuntu-latest"); expect(String(JSON.stringify(workflow))).toContain( - "ossf/scorecard-action@v2.4.3" + "ossf/scorecard-action@v2.4.4" ); expect(String(JSON.stringify(workflow))).toContain("publish_results"); });