Skip to content

Commit 68b9159

Browse files
Update actions/upload-artifact action to v7
1 parent f2688b1 commit 68b9159

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ jobs:
5858

5959
- name: Upload Test Results
6060
if: always()
61-
uses: actions/upload-artifact@v6
61+
uses: actions/upload-artifact@v7
6262
with:
6363
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
6464
path: ./test-results/*.xml
6565

6666
- name: Upload Test Coverage Report
6767
if: always()
68-
uses: actions/upload-artifact@v6
68+
uses: actions/upload-artifact@v7
6969
with:
7070
name: coverage-reports-${{ matrix.os }}-${{ matrix.python-version }}
7171
path: ./coverage/*.xml
@@ -79,7 +79,7 @@ jobs:
7979

8080
- name: Upload CI Event
8181
if: always()
82-
uses: actions/upload-artifact@v6
82+
uses: actions/upload-artifact@v7
8383
with:
8484
name: event-file-${{ matrix.os }}-${{ matrix.python-version }}
8585
path: ${{ github.event_path }}
@@ -97,7 +97,7 @@ jobs:
9797

9898
- name: Upload Built Artifacts
9999
if: always()
100-
uses: actions/upload-artifact@v6
100+
uses: actions/upload-artifact@v7
101101
with:
102102
name: build-artifacts
103103
path: ./dist/*
@@ -176,7 +176,7 @@ jobs:
176176
177177
- name: Upload Sphinx HTML
178178
if: always()
179-
uses: actions/upload-artifact@v6
179+
uses: actions/upload-artifact@v7
180180
with:
181181
name: sphinx-html
182182
path: docs/build/html

0 commit comments

Comments
 (0)