mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
799 B
YAML
29 lines
799 B
YAML
name: tools-hash-refresh
|
|
|
|
# Enforce that headroom/tools.json SHA-256 pins match the published assets for
|
|
# the currently pinned tool versions. Fails if a version was bumped without
|
|
# refreshing pins (run scripts/refresh_tool_hashes.py locally). See WEB-03.
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "headroom/tools.json"
|
|
- "scripts/refresh_tool_hashes.py"
|
|
- ".github/workflows/tools-hash-refresh.yml"
|
|
schedule:
|
|
- cron: "0 6 * * 1" # Mondays 06:00 UTC
|
|
workflow_dispatch: {}
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
verify-pins:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
- uses: actions/setup-python@v7
|
|
with:
|
|
python-version: "3.12"
|
|
- name: Verify tool SHA-256 pins
|
|
run: python scripts/refresh_tool_hashes.py --check
|