Skip to content

Commit 13041e6

Browse files
authored
Use new github action version (#1092)
1 parent 1297c8c commit 13041e6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/benchmark_default_branch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
cd tests
2525
pytest benchmark.py --benchmark-min-rounds=4 --benchmark-only -n 0 --no-cov --benchmark-json output.json
2626
- name: Upload the file
27-
uses: actions/upload-artifact@v2
27+
uses: actions/upload-artifact@v4
2828
with:
2929
name: benchmark_results
3030
path: tests/output.json

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
pytest --junitxml=junit/test-results-${{ matrix.python-version }}-${{ matrix.installation }}.xml --cov-report=xml tests
3939
4040
- name: Upload pytest test results
41-
uses: actions/upload-artifact@v1
41+
uses: actions/upload-artifact@v4
4242
with:
4343
name: pytest-results-${{ matrix.python-version }}-${{ matrix.installation }}
4444
path: junit/test-results-${{ matrix.python-version }}-${{ matrix.installation }}.xml

.github/workflows/test_all.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
pytest --junitxml=junit/test-results.xml --cov-report=xml tests
3636
3737
- name: Upload pytest test results
38-
uses: actions/upload-artifact@v1
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: pytest-results
4141
path: junit/test-results.xml

0 commit comments

Comments
 (0)