chore(deps): bump github/codeql-action from 4 to 4.37.4 (#3939) #1868
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: Check the dynamic version of the Benefits package | |
| on: [push, pull_request, workflow_call] | |
| jobs: | |
| check-dynamic-version: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 # fetch all history/tags for setuptools_scm to work | |
| - name: Configure Git | |
| # required Git setup for creating annotated tags | |
| run: | | |
| git config user.name "Version Checker" | |
| git config user.email "checker@benefits.calitp.org" | |
| - name: Verify version match | |
| run: | | |
| python .github/workflows/check-dynamic-version.py |