build(deps): bump urllib3 from 2.5.0 to 2.6.3 in the python-security group across 1 directory #834
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: Commitlint | |
| on: [pull_request] | |
| jobs: | |
| check-history: | |
| name: Check commit history | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: latest | |
| cache: npm | |
| - name: Install commitlint | |
| run: npm ci | |
| - name: Check history | |
| run: npx commitlint --from origin/${{ github.base_ref }} --to origin/${{ github.head_ref }} |