Skip to content

Commit a9455a9

Browse files
mergify[bot]dependabot[bot]t-imamichi
authored
Bump actions/upload-artifact from 4 to 5 (#692) (#694)
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 ... (cherry picked from commit cadcfc1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Takashi Imamichi <[email protected]>
1 parent 553c451 commit a9455a9

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
@@ -104,7 +104,7 @@ jobs:
104104
if: ${{ !cancelled() }}
105105
shell: bash
106106
- name: Run upload documentation
107-
uses: actions/upload-artifact@v4
107+
uses: actions/upload-artifact@v5
108108
with:
109109
name: documentation
110110
path: docs/_build/html/artifacts/documentation.tar.gz
@@ -199,7 +199,7 @@ jobs:
199199
mv .coverage ./ci-artifact-data/opt.dat
200200
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == 3.9 }}
201201
shell: bash
202-
- uses: actions/upload-artifact@v4
202+
- uses: actions/upload-artifact@v5
203203
with:
204204
name: ${{ matrix.os }}-${{ matrix.python-version }}
205205
path: ./ci-artifact-data/*
@@ -263,7 +263,7 @@ jobs:
263263
tar -zcvf artifacts/tutorials.tar.gz --exclude=./artifacts .
264264
shell: bash
265265
- name: Run upload tutorials
266-
uses: actions/upload-artifact@v4
266+
uses: actions/upload-artifact@v5
267267
with:
268268
name: tutorials${{ matrix.python-version }}
269269
path: docs/_build/html/artifacts/tutorials.tar.gz
@@ -295,7 +295,7 @@ jobs:
295295
if: ${{ matrix.python-version == 3.9 && !startsWith(github.ref, 'refs/heads/stable') && !startsWith(github.base_ref, 'stable/') }}
296296
shell: bash
297297
- name: Run upload stable tutorials
298-
uses: actions/upload-artifact@v4
298+
uses: actions/upload-artifact@v5
299299
with:
300300
name: tutorials-stable${{ matrix.python-version }}
301301
path: docs/_build/html/artifacts/tutorials.tar.gz

0 commit comments

Comments
 (0)