Skip to content

Commit 14d081a

Browse files
chore: 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 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 1129807 commit 14d081a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
ls -lh dist/
8888
8989
- name: Upload artifact
90-
uses: actions/upload-artifact@v5
90+
uses: actions/upload-artifact@v6
9191
with:
9292
name: pyos-sphinx-theme-artifact
9393
path: dist/

.github/workflows/publish-pypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
ls -lh dist/
4444
# Store an artifact of the build to use in the publish step below
4545
- name: Store the distribution packages
46-
uses: actions/upload-artifact@v5
46+
uses: actions/upload-artifact@v6
4747
with:
4848
name: python-package-distributions
4949
path: dist/
@@ -62,7 +62,7 @@ jobs:
6262
steps:
6363
# Version 4 doesn't support github enterprise yet
6464
- name: Download all the dists
65-
uses: actions/download-artifact@v6
65+
uses: actions/download-artifact@v7
6666
with:
6767
name: python-package-distributions
6868
path: dist/
@@ -84,7 +84,7 @@ jobs:
8484
id-token: write # this permission is mandatory for sigstore
8585
steps:
8686
- name: Download all the dists
87-
uses: actions/download-artifact@v6
87+
uses: actions/download-artifact@v7
8888
with:
8989
name: python-package-distributions
9090
path: dist/

0 commit comments

Comments
 (0)