chore: bump astral-sh/setup-uv from 7.6.0 to 8.0.0 #1454
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: Security | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| schedule: | |
| - cron: "0 0 * * 1" # every Monday at 00:00 UTC | |
| jobs: | |
| semgrep: | |
| if: github.event_name != 'schedule' && !startsWith(github.event.head_commit.message, 'bump:') | |
| runs-on: ubuntu-latest | |
| container: | |
| image: returntocorp/semgrep:1.128.1@sha256:144d315f7354c2b2c53021a76165a500f67252c47464be75e951b67050f54a9e | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Run Semgrep | |
| run: | | |
| semgrep scan --config auto --error | |
| twyn: | |
| if: github.event_name != 'schedule' && !startsWith(github.event.head_commit.message, 'bump:') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0 | |
| with: | |
| version: "0.8.22" | |
| - name: Install the project | |
| run: uv sync --locked --extra cli | |
| - name: Run Twyn against our dependencies | |
| run: | | |
| uv run twyn --version | |
| uv run twyn run -vv |