We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7de25e0 commit 9b6c39fCopy full SHA for 9b6c39f
.github/workflows/forum.yml
@@ -17,19 +17,10 @@ jobs:
17
steps:
18
- uses: actions/checkout@v4
19
- name: Set up Python ${{ matrix.python-version }}
20
- uses: actions/setup-python@v3
+ uses: actions/setup-python@v5
21
with:
22
python-version: ${{ matrix.python-version }}
23
-
24
- - name: Cache Python dependencies
25
- uses: actions/cache@v3
26
- with:
27
- path: |
28
- ~/.cache/pip
29
- !~/.cache/pip/log
30
- key: ${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }}
31
- restore-keys: |
32
- ${{ runner.os }}-py${{ matrix.python-version }}-
+ cache: "pip"
33
34
- name: Install Dependencies
35
run: |
0 commit comments