Skip to content

Commit 19b952e

Browse files
Bump actions/upload-artifact from 5 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 7e9b7da commit 19b952e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
flags: unit-tests
116116
- name: Upload test results
117117
if: ${{ always() }} # Always run this step, even if tests fail
118-
uses: actions/upload-artifact@v5
118+
uses: actions/upload-artifact@v6
119119
with:
120120
name: Unittest report ${{ matrix.os }}-${{ matrix.pixi-environment }}
121121
path: ${{ env.COVERAGE_REPORT }}
@@ -157,7 +157,7 @@ jobs:
157157
flags: integration-tests
158158
- name: Upload test results
159159
if: ${{ always() }} # Always run this step, even if tests fail
160-
uses: actions/upload-artifact@v5
160+
uses: actions/upload-artifact@v6
161161
with:
162162
name: Integration test report ${{ matrix.os }}-${{ matrix.pixi-environment }}
163163
path: ${{ env.COVERAGE_REPORT }}
@@ -169,7 +169,7 @@ jobs:
169169
- typechecking
170170
steps:
171171
- name: Merge Artifacts
172-
uses: actions/upload-artifact/merge@v5
172+
uses: actions/upload-artifact/merge@v6
173173
with:
174174
name: Testing reports
175175
pattern: "* report *"
@@ -196,7 +196,7 @@ jobs:
196196
pixi run typing --non-interactive --html-report mypy-report
197197
- name: Upload test results
198198
if: ${{ always() }} # Upload even on mypy error
199-
uses: actions/upload-artifact@v5
199+
uses: actions/upload-artifact@v6
200200
with:
201201
name: Mypy report
202202
path: mypy-report

.github/workflows/pypi-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
else
4343
echo "✅ Looks good"
4444
fi
45-
- uses: actions/upload-artifact@v5
45+
- uses: actions/upload-artifact@v6
4646
with:
4747
name: releases
4848
path: dist

0 commit comments

Comments
 (0)