fix: update GitHub Actions to use latest versions
- Update actions/upload-artifact from v3 to v4 - Update actions/setup-python from v4 to v5 - Update actions/cache from v3 to v4 - Fixes deprecation warnings in CI/CD pipeline
This commit is contained in:
4
.github/workflows/ci-cd.yml
vendored
4
.github/workflows/ci-cd.yml
vendored
@@ -38,12 +38,12 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.10'
|
||||
|
||||
- name: Cache pip dependencies
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: ${{ runner.os }}-pip-${{ hashFiles('app/requirements.txt') }}
|
||||
|
||||
Reference in New Issue
Block a user