Skip to content

Commit 5f526e7

Browse files
deployment: optimize pip cache (#11777)
* deployment: fix pip cache * deployment: try nscloud cache
1 parent f22b6cc commit 5f526e7

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/hybrid_system_test.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,19 @@ jobs:
4343
with:
4444
fetch-depth: 0
4545

46-
- uses: actions/setup-python@v5
46+
- uses: actions/setup-python@v6
4747
id: setup-pypy
4848
if: github.event_name != 'workflow_dispatch'
4949
with:
5050
python-version: "pypy3.9"
51-
cache: "pip"
5251

53-
- run: pip install -r scripts/requirements.txt
52+
- name: Set up pip dependency caching
53+
uses: namespacelabs/nscloud-cache-action@v1
54+
with:
55+
cache: python
56+
57+
- name: Install Python Dependencies
58+
run: pip install -r scripts/requirements.txt
5459
if: github.event_name != 'workflow_dispatch'
5560

5661
- name: Check for system-test-triggering changes

0 commit comments

Comments
 (0)