Skip to content

Commit ac212cd

Browse files
authored
Merge pull request #11 from codcod/dependabot/github_actions/actions/upload-artifact-5
ci(deps): bump actions/upload-artifact from 4 to 5
2 parents 917a5b7 + 6013fda commit ac212cd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
run: uv run bandit -r src/ -f json -o bandit-report.json || true
9999

100100
- name: Upload bandit report
101-
uses: actions/upload-artifact@v4
101+
uses: actions/upload-artifact@v5
102102
if: always()
103103
with:
104104
name: bandit-report-${{ env.PRIMARY_PYTHON_VERSION }}
@@ -172,7 +172,7 @@ jobs:
172172
# --cov-report=term-missing \
173173
# --junitxml=pytest-report.xml
174174
# - name: Upload coverage
175-
# uses: actions/upload-artifact@v4
175+
# uses: actions/upload-artifact@v5
176176
# with:
177177
# name: coverage-${{ matrix.python-version }}-${{ matrix.os }}
178178
# path: |
@@ -195,7 +195,7 @@ jobs:
195195
fi
196196
- name: Upload coverage
197197
if: matrix.coverage == true
198-
uses: actions/upload-artifact@v4
198+
uses: actions/upload-artifact@v5
199199
with:
200200
name: coverage-${{ matrix.python-version }}-${{ matrix.os }}
201201
path: |
@@ -271,7 +271,7 @@ jobs:
271271
fail_ci_if_error: false
272272

273273
- name: Upload coverage reports
274-
uses: actions/upload-artifact@v4
274+
uses: actions/upload-artifact@v5
275275
with:
276276
name: final-coverage-report
277277
path: |
@@ -312,7 +312,7 @@ jobs:
312312
python -c "import smpp; print('Package installs correctly')"
313313
314314
- name: Upload build artifacts
315-
uses: actions/upload-artifact@v4
315+
uses: actions/upload-artifact@v5
316316
with:
317317
name: dist-${{ env.PRIMARY_PYTHON_VERSION }}
318318
path: dist/

0 commit comments

Comments
 (0)