Skip generation increment in background_images() when paths unchanged #1006
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: Depscan | |
| on: | |
| push: | |
| branches: [master] | |
| schedule: | |
| - cron: '0 12 * * 5' | |
| env: | |
| CI: 'true' | |
| ASAN_OPTIONS: detect_leaks=0 | |
| LC_ALL: en_US.UTF-8 | |
| LANG: en_US.UTF-8 | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| jobs: | |
| dependecy-scanner: | |
| name: Scan dependencies for vulnerabilities | |
| runs-on: ubuntu-latest | |
| env: | |
| KITTY_BUNDLE: 1 | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 10 | |
| persist-credentials: false | |
| - name: Checkout bypy | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| persist-credentials: false | |
| repository: kovidgoyal/bypy | |
| path: bypy-src | |
| - name: Check dependencies | |
| run: python3 .github/workflows/ci.py check-dependencies |