Skip to content

Commit 68ee7c5

Browse files
fix(KDP): update upload-artifact action to v4 in GitHub workflow
1 parent 6c60aed commit 68ee7c5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/UTESTS.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
python-version: ${{ matrix.python-version }}
8888

8989
- name: Cache Poetry dependencies
90-
uses: actions/cache@v3
90+
uses: actions/cache@v4
9191
with:
9292
path: |
9393
~/.cache/pypoetry
@@ -124,7 +124,7 @@ jobs:
124124
timeout-minutes: 8
125125

126126
- name: Upload test results
127-
uses: actions/upload-artifact@v3
127+
uses: actions/upload-artifact@v4
128128
if: always()
129129
with:
130130
name: test-results-${{ matrix.python-version }}-${{ matrix.test-group }}
@@ -157,15 +157,15 @@ jobs:
157157
timeout-minutes: 10
158158

159159
- name: Upload coverage to Codecov
160-
uses: codecov/codecov-action@v3
160+
uses: codecov/codecov-action@v4
161161
with:
162162
file: ./coverage.xml
163163
flags: unittests
164164
name: codecov-umbrella
165165
fail_ci_if_error: false
166166

167167
- name: Upload coverage report
168-
uses: actions/upload-artifact@v3
168+
uses: actions/upload-artifact@v4
169169
with:
170170
name: coverage-report
171171
path: htmlcov/
@@ -194,7 +194,7 @@ jobs:
194194
timeout-minutes: 10
195195

196196
- name: Upload benchmark results
197-
uses: actions/upload-artifact@v3
197+
uses: actions/upload-artifact@v4
198198
if: always()
199199
with:
200200
name: benchmark-results

0 commit comments

Comments
 (0)