Skip to content

Commit 041ff95

Browse files
Bump the ci-actions group with 2 updates
Bumps the ci-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 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ad4a27f commit 041ff95

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/build_zipapp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: >-
2323
python3 scripts/build_zipapp.py
2424
- name: Store the built zipapp
25-
uses: actions/upload-artifact@v6
25+
uses: actions/upload-artifact@v7
2626
with:
2727
name: pythonfinder-zipapp
2828
path: dist/
@@ -41,7 +41,7 @@ jobs:
4141

4242
steps:
4343
- name: Download the zipapp
44-
uses: actions/download-artifact@v7
44+
uses: actions/download-artifact@v8
4545
with:
4646
name: pythonfinder-zipapp
4747
path: dist/

.github/workflows/publish_to_pypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Build a binary wheel and a source tarball
2727
run: python3 -m build
2828
- name: Store the distribution packages
29-
uses: actions/upload-artifact@v6
29+
uses: actions/upload-artifact@v7
3030
with:
3131
name: python-package-distributions
3232
path: dist/
@@ -45,7 +45,7 @@ jobs:
4545

4646
steps:
4747
- name: Download all the dists
48-
uses: actions/download-artifact@v7
48+
uses: actions/download-artifact@v8
4949
with:
5050
name: python-package-distributions
5151
path: dist/
@@ -66,7 +66,7 @@ jobs:
6666

6767
steps:
6868
- name: Download all the dists
69-
uses: actions/download-artifact@v7
69+
uses: actions/download-artifact@v8
7070
with:
7171
name: python-package-distributions
7272
path: dist/

.github/workflows/publish_to_testpypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Build a binary wheel and a source tarball
2828
run: python3 -m build
2929
- name: Store the distribution packages
30-
uses: actions/upload-artifact@v6
30+
uses: actions/upload-artifact@v7
3131
with:
3232
name: python-package-distributions
3333
path: dist/
@@ -47,7 +47,7 @@ jobs:
4747

4848
steps:
4949
- name: Download all the dists
50-
uses: actions/download-artifact@v7
50+
uses: actions/download-artifact@v8
5151
with:
5252
name: python-package-distributions
5353
path: dist/

.github/workflows/test_builds.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: >-
2424
python3 scripts/build_zipapp.py
2525
- name: Store the built zipapp
26-
uses: actions/upload-artifact@v6
26+
uses: actions/upload-artifact@v7
2727
with:
2828
name: pythonfinder-zipapp
2929
path: dist/
@@ -50,7 +50,7 @@ jobs:
5050
- name: Build a binary wheel and a source tarball
5151
run: python3 -m build
5252
- name: Store the distribution packages
53-
uses: actions/upload-artifact@v6
53+
uses: actions/upload-artifact@v7
5454
with:
5555
name: python-package-distributions
5656
path: dist/

0 commit comments

Comments
 (0)