Skip to content

Commit b7b61cd

Browse files
dependabot[bot]olivhoenen
authored andcommitted
Bump actions/upload-artifact from 4 to 7
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 77d73f8 commit b7b61cd

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Build a binary wheel and a source tarball
2626
run: python3 -m build .
2727
- name: Store the distribution packages
28-
uses: actions/upload-artifact@v4
28+
uses: actions/upload-artifact@v7
2929
with:
3030
name: python-package-distributions
3131
path: dist/

.github/workflows/test_with_pytest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
python -m pytest -n=auto --cov=imas --cov-report=term-missing --cov-report=xml:coverage.xml --cov-report=html:htmlcov --junit-xml=junit.xml
3838
3939
- name: Upload coverage report ${{ matrix.python-version }}
40-
uses: actions/upload-artifact@v4
40+
uses: actions/upload-artifact@v7
4141
with:
4242
name: coverage-report-${{ matrix.python-version }}
4343
path: htmlcov
4444

4545
- name: Upload test report ${{ matrix.python-version }}
46-
uses: actions/upload-artifact@v4
46+
uses: actions/upload-artifact@v7
4747
with:
4848
name: test-report-${{ matrix.python-version }}
4949
path: junit.xml

0 commit comments

Comments
 (0)