ci: reduce flakiness of install_smithy_dafny_codegen_dependencies #6081
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
| # This workflow performs static analysis checks. | |
| name: static analysis | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| not-grep: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| id-token: write | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install setuptools dependency | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install setuptools==81.0.0 | |
| - name: not-grep | |
| uses: mattsb42-meta/[email protected] |