Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 13 additions & 18 deletions .github/workflows/snyk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,16 @@ jobs:
with:
node-version: "25"

- name: Setup Python (for tests tooling)
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
- name: Install uv
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
with:
version: "0.11.0"
python-version: "3.11"

- name: Sync Python dependencies (integrations)
working-directory: tests/integrations/python
run: uv sync --frozen

- name: Setup Go
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
with:
Expand Down Expand Up @@ -101,25 +106,15 @@ jobs:
with:
node-version: "25"

- name: Setup Python (for tests tooling)
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
- name: Install uv
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
with:
version: "0.11.0"
python-version: "3.11"

- name: Setup Python (for tests tooling)
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: "3.11"
cache: "pip"
cache-dependency-path: |
tests/integrations/requirements.txt
tests/governance/requirements.txt

- name: Install Python dependencies (tests tooling)
run: |
python -m pip install --disable-pip-version-check \
-r tests/integrations/requirements.txt \
-r tests/governance/requirements.txt
- name: Sync Python dependencies (integrations)
working-directory: tests/integrations/python
run: uv sync --frozen

- name: Setup Go
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
Expand Down
Loading