Skip to content

Commit 2379ed7

Browse files
Bump the actions group with 2 updates
Bumps the actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent decfc49 commit 2379ed7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/docs-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
cd docs
1717
make html
1818
- name: Upload Artifact
19-
uses: actions/upload-artifact@v4
19+
uses: actions/upload-artifact@v5
2020
with:
2121
name: docs-build
2222
path: docs/_build/html

.github/workflows/publish-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
run: python -m zipfile --list dist/array_api_strict-*.whl
6363

6464
- name: Upload distribution artifact
65-
uses: actions/upload-artifact@v4
65+
uses: actions/upload-artifact@v5
6666
with:
6767
name: dist-artifact
6868
path: dist
@@ -83,7 +83,7 @@ jobs:
8383

8484
steps:
8585
- name: Download distribution artifact
86-
uses: actions/download-artifact@v5
86+
uses: actions/download-artifact@v6
8787
with:
8888
name: dist-artifact
8989
path: dist

0 commit comments

Comments
 (0)