3838 uses : actions/checkout@v4
3939
4040 - name : Set up Python
41- uses : actions/setup-python@v4
41+ uses : actions/setup-python@v5
4242 with :
4343 python-version : ${{ env.PYTHON_VERSION }}
4444
8585 DATABASE_URL : postgresql://postgres:postgres@localhost:5432/test_db
8686
8787 - name : Upload coverage to Codecov
88- uses : codecov/codecov-action@v3
88+ uses : codecov/codecov-action@v4
8989 with :
9090 file : ./coverage.xml
9191 flags : unittests
@@ -102,7 +102,7 @@ jobs:
102102 uses : actions/checkout@v4
103103
104104 - name : Set up Python
105- uses : actions/setup-python@v4
105+ uses : actions/setup-python@v5
106106 with :
107107 python-version : ${{ env.PYTHON_VERSION }}
108108
@@ -119,7 +119,7 @@ jobs:
119119 safety check --json --output safety-report.json || true
120120
121121 - name : Upload security reports
122- uses : actions/upload-artifact@v3
122+ uses : actions/upload-artifact@v4
123123 with :
124124 name : security-reports
125125 path : |
@@ -208,7 +208,7 @@ jobs:
208208 uses : actions/checkout@v4
209209
210210 - name : Set up Python
211- uses : actions/setup-python@v4
211+ uses : actions/setup-python@v5
212212 with :
213213 python-version : ${{ env.PYTHON_VERSION }}
214214
@@ -222,7 +222,7 @@ jobs:
222222 pytest tests/test_performance.py -v -m slow --tb=short
223223
224224 - name : Upload performance results
225- uses : actions/upload-artifact@v3
225+ uses : actions/upload-artifact@v4
226226 with :
227227 name : performance-results
228228 path : performance-results/
0 commit comments