Skip to content

Commit 986aadb

Browse files
Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 88ac70a commit 986aadb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/deploy-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: pip install -U pip setuptools virtualenv wheel
3636
- name: Build sdist
3737
run: python3 setup.py sdist bdist_wheel
38-
- uses: actions/upload-artifact@v4
38+
- uses: actions/upload-artifact@v5
3939
with:
4040
path: ./dist/*
4141
- name: Deploy to Pypi

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
if: ${{ !cancelled() }}
9999
shell: bash
100100
- name: Run upload documentation
101-
uses: actions/upload-artifact@v4
101+
uses: actions/upload-artifact@v5
102102
with:
103103
name: documentation
104104
path: docs/_build/html/artifacts/documentation.tar.gz
@@ -163,7 +163,7 @@ jobs:
163163
mv .coverage ./ci-artifact-data/ml.dat
164164
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == 3.9 }}
165165
shell: bash
166-
- uses: actions/upload-artifact@v4
166+
- uses: actions/upload-artifact@v5
167167
with:
168168
name: ${{ matrix.os }}-${{ matrix.python-version }}
169169
path: ./ci-artifact-data/*
@@ -221,7 +221,7 @@ jobs:
221221
tar -zcvf artifacts/tutorials.tar.gz --exclude=./artifacts .
222222
shell: bash
223223
- name: Run upload tutorials
224-
uses: actions/upload-artifact@v4
224+
uses: actions/upload-artifact@v5
225225
with:
226226
name: tutorials${{ matrix.python-version }}
227227
path: docs/_build/html/artifacts/tutorials.tar.gz
@@ -250,7 +250,7 @@ jobs:
250250
if: ${{ matrix.python-version == 3.9 && !startsWith(github.ref, 'refs/heads/stable') && !startsWith(github.base_ref, 'stable/') }}
251251
shell: bash
252252
- name: Run upload stable tutorials
253-
uses: actions/upload-artifact@v4
253+
uses: actions/upload-artifact@v5
254254
with:
255255
name: tutorials-stable${{ matrix.python-version }}
256256
path: docs/_build/html/artifacts/tutorials.tar.gz

0 commit comments

Comments
 (0)