From 36841841ce0490fb5f6566de24a5301375264231 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 23:53:42 +0000 Subject: [PATCH 1/2] Bump crate-ci/typos from 1.36.2 to 1.43.1 Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.36.2 to 1.43.1. - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](https://github.com/crate-ci/typos/compare/v1.36.2...v1.43.1) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-version: 1.43.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/typos.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/typos.yaml b/.github/workflows/typos.yaml index 065c6b4cd97e..ffdf8a5a799f 100644 --- a/.github/workflows/typos.yaml +++ b/.github/workflows/typos.yaml @@ -25,7 +25,7 @@ jobs: persist-credentials: false - name: Use custom config file - uses: crate-ci/typos@v1.36.2 + uses: crate-ci/typos@v1.44.0 with: config: .github/_typos.toml write_changes: false From 9f55b27fc5269b305d9981f2f0920d1fbd87bc15 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 17 Jun 2026 06:08:03 +0000 Subject: [PATCH 2/2] Fix typos workflow to check only changed PR files --- .github/workflows/typos.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/typos.yaml b/.github/workflows/typos.yaml index ffdf8a5a799f..9b3ed6c27f63 100644 --- a/.github/workflows/typos.yaml +++ b/.github/workflows/typos.yaml @@ -22,10 +22,17 @@ jobs: - name: Check out code uses: actions/checkout@v5 with: + fetch-depth: 0 persist-credentials: false + - name: Get changed files + id: changed-files + if: github.event_name == 'pull_request' + uses: jitterbit/get-changed-files@v1 + - name: Use custom config file uses: crate-ci/typos@v1.44.0 with: + files: ${{ github.event_name == 'pull_request' && steps.changed-files.outputs.added_modified || '.' }} config: .github/_typos.toml write_changes: false