Skip to content

Commit 021dd54

Browse files
Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 590958f commit 021dd54

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/cache-pixi-lock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
pixi.lock
4747
key: ${{ steps.restore.outputs.cache-primary-key }}
4848
- name: Upload pixi.lock
49-
uses: actions/upload-artifact@v4
49+
uses: actions/upload-artifact@v5
5050
with:
5151
name: pixi-lock
5252
path: pixi.lock

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
flags: unit-tests
6262
- name: Upload test results
6363
if: ${{ always() }} # Always run this step, even if tests fail
64-
uses: actions/upload-artifact@v4
64+
uses: actions/upload-artifact@v5
6565
with:
6666
name: Unittest report ${{ matrix.os }}-${{ matrix.pixi-environment }}
6767
path: ${{ env.COVERAGE_REPORT }}
@@ -105,7 +105,7 @@ jobs:
105105
flags: integration-tests
106106
- name: Upload test results
107107
if: ${{ always() }} # Always run this step, even if tests fail
108-
uses: actions/upload-artifact@v4
108+
uses: actions/upload-artifact@v5
109109
with:
110110
name: Integration test report ${{ matrix.os }}-${{ matrix.pixi-environment }}
111111
path: ${{ env.COVERAGE_REPORT }}
@@ -117,7 +117,7 @@ jobs:
117117
- typechecking
118118
steps:
119119
- name: Merge Artifacts
120-
uses: actions/upload-artifact/merge@v4
120+
uses: actions/upload-artifact/merge@v5
121121
with:
122122
name: Testing reports
123123
pattern: "* report *"
@@ -146,7 +146,7 @@ jobs:
146146
pixi run typing --non-interactive --html-report mypy-report
147147
- name: Upload test results
148148
if: ${{ always() }} # Upload even on mypy error
149-
uses: actions/upload-artifact@v4
149+
uses: actions/upload-artifact@v5
150150
with:
151151
name: Mypy report
152152
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@v4
45+
- uses: actions/upload-artifact@v5
4646
with:
4747
name: releases
4848
path: dist

0 commit comments

Comments
 (0)