Spaces:
Sleeping
Sleeping
Fix deprecated GitHub Actions: upgrade to v4
Browse files
.github/workflows/deploy.yml
CHANGED
|
@@ -22,7 +22,7 @@ jobs:
|
|
| 22 |
python-version: '3.11'
|
| 23 |
|
| 24 |
- name: Cache Python dependencies
|
| 25 |
-
uses: actions/cache@
|
| 26 |
with:
|
| 27 |
path: ~/.cache/pip
|
| 28 |
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
|
|
@@ -41,7 +41,7 @@ jobs:
|
|
| 41 |
|
| 42 |
- name: Upload test results
|
| 43 |
if: always()
|
| 44 |
-
uses: actions/upload-artifact@
|
| 45 |
with:
|
| 46 |
name: test-results
|
| 47 |
path: |
|
|
|
|
| 22 |
python-version: '3.11'
|
| 23 |
|
| 24 |
- name: Cache Python dependencies
|
| 25 |
+
uses: actions/cache@v4
|
| 26 |
with:
|
| 27 |
path: ~/.cache/pip
|
| 28 |
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
|
|
|
|
| 41 |
|
| 42 |
- name: Upload test results
|
| 43 |
if: always()
|
| 44 |
+
uses: actions/upload-artifact@v4
|
| 45 |
with:
|
| 46 |
name: test-results
|
| 47 |
path: |
|