Skip to content

Commit 2947d56

Browse files
Bump the ci-actions group with 4 updates
Bumps the ci-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) 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) Updates `sigstore/gh-action-sigstore-python` from 3.1.0 to 3.2.0 - [Release notes](https://github.com/sigstore/gh-action-sigstore-python/releases) - [Changelog](https://github.com/sigstore/gh-action-sigstore-python/blob/main/CHANGELOG.md) - [Commits](sigstore/gh-action-sigstore-python@v3.1.0...v3.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: sigstore/gh-action-sigstore-python dependency-version: 3.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8352e05 commit 2947d56

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

.github/workflows/auto_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
python-version: ["3.14", "3.13", "3.12", "3.11", "3.10"]
1818

1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/build_zipapp.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0
1717
- name: Set up Python
@@ -22,7 +22,7 @@ jobs:
2222
run: >-
2323
python3 scripts/build_zipapp.py
2424
- name: Store the built zipapp
25-
uses: actions/upload-artifact@v5
25+
uses: actions/upload-artifact@v6
2626
with:
2727
name: pythonfinder-zipapp
2828
path: dist/
@@ -41,12 +41,12 @@ jobs:
4141

4242
steps:
4343
- name: Download the zipapp
44-
uses: actions/download-artifact@v6
44+
uses: actions/download-artifact@v7
4545
with:
4646
name: pythonfinder-zipapp
4747
path: dist/
4848
- name: Sign the zipapp with Sigstore
49-
uses: sigstore/gh-action-sigstore-python@v3.1.0
49+
uses: sigstore/gh-action-sigstore-python@v3.2.0
5050
with:
5151
release-signing-artifacts: false
5252
inputs: >-

.github/workflows/publish_to_pypi.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
1616
- name: Set up Python
@@ -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@v5
29+
uses: actions/upload-artifact@v6
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@v6
48+
uses: actions/download-artifact@v7
4949
with:
5050
name: python-package-distributions
5151
path: dist/
@@ -66,12 +66,12 @@ jobs:
6666

6767
steps:
6868
- name: Download all the dists
69-
uses: actions/download-artifact@v6
69+
uses: actions/download-artifact@v7
7070
with:
7171
name: python-package-distributions
7272
path: dist/
7373
- name: Sign the dists with Sigstore
74-
uses: sigstore/gh-action-sigstore-python@v3.1.0
74+
uses: sigstore/gh-action-sigstore-python@v3.2.0
7575
with:
7676
release-signing-artifacts: false
7777
inputs: >-

.github/workflows/publish_to_testpypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0
1717
- name: Set up Python
@@ -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@v5
30+
uses: actions/upload-artifact@v6
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@v6
50+
uses: actions/download-artifact@v7
5151
with:
5252
name: python-package-distributions
5353
path: dist/

.github/workflows/test_builds.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818
- name: Set up Python
@@ -23,7 +23,7 @@ jobs:
2323
run: >-
2424
python3 scripts/build_zipapp.py
2525
- name: Store the built zipapp
26-
uses: actions/upload-artifact@v5
26+
uses: actions/upload-artifact@v6
2727
with:
2828
name: pythonfinder-zipapp
2929
path: dist/
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535

3636
steps:
37-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3838
with:
3939
fetch-depth: 0
4040
- name: Set up Python
@@ -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@v5
53+
uses: actions/upload-artifact@v6
5454
with:
5555
name: python-package-distributions
5656
path: dist/

0 commit comments

Comments
 (0)