From 0e5bcaee549d3337f5da302a65bfbc7774c85039 Mon Sep 17 00:00:00 2001 From: dennis zhuang Date: Sat, 19 Sep 2026 02:46:12 +0000 Subject: [PATCH] ci: pin crate-ci/typos to v1.50.2 (#9246) crate-ci/typos renamed its default branch from master to main on 2026-09-18 (0a3d75e) and the master branch is gone, so every workflow run since then fails at job setup with: Unable to resolve action `crate-ci/typos@master`, unable to find version `master` Pin to the latest release tag instead of tracking a branch. This matches how the other actions in these two workflows are referenced and keeps the check reproducible. Signed-off-by: Dennis Zhuang --- .github/workflows/checks.yml | 2 +- .github/workflows/docs.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index e27c2d50c3..6e591ba9df 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -39,7 +39,7 @@ jobs: - uses: actions/checkout@v4 with: persist-credentials: false - - uses: crate-ci/typos@master + - uses: crate-ci/typos@v1.50.2 - name: Check the config docs run: | make config-docs && \ diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 40ab198427..3006dc7f95 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -45,7 +45,7 @@ jobs: - uses: actions/checkout@v4 with: persist-credentials: false - - uses: crate-ci/typos@master + - uses: crate-ci/typos@v1.50.2 license-header-check: if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}