ci(deps): bump actions/setup-go from 6.5.0 to 7.0.0 #905
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: version-sync | |
| # Cargo.toml is the single source of truth for the project version. | |
| # Every PR is checked against the SSOT script: any drift between Cargo.toml, | |
| # Cargo.lock, the Helm chart, README, and docs/security must be fixed before | |
| # merge. | |
| on: | |
| pull_request: | |
| branches: [master] | |
| push: | |
| branches: [master] | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Verify version SSOT | |
| run: ./scripts/check-version-sync.sh |