build: update checkout action to v5
What changed, and why it matters
This commit simply bumps the version of a GitHub-provided automation action used to check out source code during automated builds. There is no change to the project's actual software, cryptographic code, or build outputs. It is a routine maintenance update to the CI/CD configuration.
No security action required. Treat as routine infrastructure hygiene.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch updates two workflow files (.github/workflows/wasm-package.yml and .github/workflows/wheels.yml) from actions/checkout@v4 to actions/checkout@v5. This is a third-party dependency version bump in GitHub Actions runners. The diff shows no changes to inputs, logic, submodules handling, or fetch-depth settings beyond the version tag.
Changed components
GitHub Actions CI workflowsInspect captured patch +2 / −2
diff --git a/.github/workflows/wasm-package.yml b/.github/workflows/wasm-package.yml
index 5e2b8a8..6015c17 100644
--- a/.github/workflows/wasm-package.yml
+++ b/.github/workflows/wasm-package.yml
@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
submodules: true
diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml
index 42a4b07..0b16497 100644
--- a/.github/workflows/wheels.yml
+++ b/.github/workflows/wheels.yml
@@ -26,7 +26,7 @@ jobs:
SWIG_PATH: "C:\\ProgramData\\chocolatey\\lib\\swig\\tools\\install\\swigwin-3.0.12"
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
submodules: true
fetch-depth: 0
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.