We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pyproject.toml
uv lock
1 parent 0c4218f commit a324e2eCopy full SHA for a324e2e
.github/workflows/security.yaml
@@ -19,6 +19,18 @@ jobs:
19
- name: Checkout code
20
uses: actions/checkout@v5
21
22
+ # https://github.com/astral-sh/setup-uv
23
+ - name: Install the latest version of uv
24
+ uses: astral-sh/setup-uv@v6
25
+ with:
26
+ version: "latest"
27
+ python-version: "3.12"
28
+ enable-cache: false
29
+ activate-environment: true
30
+
31
+ # Trivy does not support pylock.toml https://github.com/aquasecurity/trivy/discussions/9408
32
+ - run: find . -name pyproject.toml -execdir uv lock \;
33
34
- name: Trivy scan
35
uses: aquasecurity/trivy-action@dc5a429b52fcf669ce959baa2c2dd26090d2a6c4 # 0.32.0
36
with:
0 commit comments