Skip to content

Commit 9f9c2d2

Browse files
committed
Update upload-artifact
1 parent 1db02ae commit 9f9c2d2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- name: Check out the repository
18-
uses: actions/checkout@v4.1.1
18+
uses: "actions/checkout@v4"
1919

2020
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v5.0.0
21+
uses: "actions/setup-python@v5"
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

@@ -33,13 +33,13 @@ jobs:
3333
./checks.sh
3434
3535
- name: Upload coverage data
36-
uses: "actions/upload-artifact@v3.1.3"
36+
uses: "actions/upload-artifact@v4"
3737
with:
38-
name: coverage-data
38+
name: coverage-data-${{ matrix.python-version }}
3939
path: ".coverage"
4040

4141
- name: Upload documentation
42-
uses: "actions/upload-artifact@v3.1.3"
42+
uses: "actions/upload-artifact@v4"
4343
with:
44-
name: docs
44+
name: docs-${{ matrix.python-version }}
4545
path: docs/_build

0 commit comments

Comments
 (0)