chore(deps): bump requests from 2.31.0 to 2.33.0 in /run/system-package #39
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: Lint | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Python | |
| uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | |
| with: | |
| python-version: '3.10' | |
| - name: Install nox | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install nox | |
| - name: Prepare noxfile | |
| # copy from customized noxfile so that we don't lint everything in the repository | |
| # we don't expect contributors to fix past lint issues | |
| run: cp .github/scripts/noxfile-lint.py noxfile.py | |
| - name: Make script executable | |
| run: chmod +x .github/scripts/lint-changed.sh | |
| - name: Run lint script for changed files | |
| run: | | |
| .github/scripts/lint-changed.sh "pull_request" "${{ github.base_ref }}" |