Skip to content

Commit 70a5c4d

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] <support@github.com>
1 parent 487e6b8 commit 70a5c4d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ jobs:
6868
sha256sum * | tee SHA256SUMS
6969
7070
- name: Upload Python artifact
71-
uses: actions/upload-artifact@v4
71+
uses: actions/upload-artifact@v5
7272
with:
7373
name: dist-${{ github.run_attempt }}
7474
path: dist
7575
if-no-files-found: error
7676

7777
- name: Upload Javascript artifact
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v5
7979
with:
8080
name: jsdist-${{ github.run_attempt }}
8181
path: jsdist

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: pyproject-build
5757

5858
- name: Upload built artifacts
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v5
6060
with:
6161
name: dist-${{ github.run_attempt }}
6262
path: ./dist
@@ -179,7 +179,7 @@ jobs:
179179
180180
- name: Upload test reports
181181
if: always()
182-
uses: actions/upload-artifact@v4
182+
uses: actions/upload-artifact@v5
183183
with:
184184
name: |-
185185
tests-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.pip-extras }}-${{ (matrix.pip-install-constraints != '' && 'oldest-') || '' }}${{ github.run_attempt }}

0 commit comments

Comments
 (0)