Skip to content

Commit b3632e6

Browse files
authored
entropy-beauty-scan.yml don't cache pip
1 parent 97d0254 commit b3632e6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/entropy-beauty-scan.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,18 @@ jobs:
1818
# Only use full history when necessary (push/release or when base commit is needed)
1919
fetch-depth: ${{ github.event_name == 'pull_request_target' && 2 || 0 }}
2020

21-
- name: Cache Python dependencies
21+
- name: Cache pip manually
2222
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
2323
with:
2424
path: ~/.cache/pip
25-
key: ${{ runner.os }}-pip-entropy-${{ hashFiles('.github/workflows/compute-entropy.py', 'requirements*.txt') }}
25+
key: ${{ runner.os }}-pip-entropy-${{ hashFiles('.github/workflows/compute-entropy.py') }}
2626
restore-keys: |
2727
${{ runner.os }}-pip-entropy-
2828
2929
- name: Setup Python
3030
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
3131
with:
3232
python-version: '3.12'
33-
cache: 'pip' # extra safety layer
3433

3534
- name: Install Python dependencies (only when needed)
3635
run: |

0 commit comments

Comments
 (0)