Skip to content

Commit 0e7a9c7

Browse files
Bump actions/upload-artifact from 5 to 7 (#2525)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6d510f7 commit 0e7a9c7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- uses: actions/checkout@v4
4646
- uses: Parcels-code/pixi-lock/create-and-cache@a9aee67fa67426e6b0297fa5bef80600572be153
4747
id: pixi-lock
48-
- uses: actions/upload-artifact@v6
48+
- uses: actions/upload-artifact@v7
4949
with:
5050
name: pixi-lock
5151
path: pixi.lock
@@ -108,7 +108,7 @@ jobs:
108108
flags: unit-tests
109109
- name: Upload test results
110110
if: ${{ always() }} # Always run this step, even if tests fail
111-
uses: actions/upload-artifact@v5
111+
uses: actions/upload-artifact@v7
112112
with:
113113
name: Unittest report ${{ matrix.os }}-${{ matrix.pixi-environment }}
114114
path: ${{ env.COVERAGE_REPORT }}
@@ -150,7 +150,7 @@ jobs:
150150
flags: integration-tests
151151
- name: Upload test results
152152
if: ${{ always() }} # Always run this step, even if tests fail
153-
uses: actions/upload-artifact@v5
153+
uses: actions/upload-artifact@v7
154154
with:
155155
name: Integration test report ${{ matrix.os }}-${{ matrix.pixi-environment }}
156156
path: ${{ env.COVERAGE_REPORT }}
@@ -162,7 +162,7 @@ jobs:
162162
- typechecking
163163
steps:
164164
- name: Merge Artifacts
165-
uses: actions/upload-artifact/merge@v5
165+
uses: actions/upload-artifact/merge@v7
166166
with:
167167
name: Testing reports
168168
pattern: "* report *"
@@ -189,7 +189,7 @@ jobs:
189189
pixi run typing --non-interactive --html-report mypy-report
190190
- name: Upload test results
191191
if: ${{ always() }} # Upload even on mypy error
192-
uses: actions/upload-artifact@v5
192+
uses: actions/upload-artifact@v7
193193
with:
194194
name: Mypy report
195195
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@v7
4646
with:
4747
name: releases
4848
path: dist

0 commit comments

Comments
 (0)