Skip to content

Commit c71613d

Browse files
Bump the github-actions group across 1 directory with 6 updates (#126)
Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `6` | `7` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `6` | | [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python) | `3.0.1` | `3.1.0` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `astral-sh/setup-uv` from 6 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v6...v7) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) 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 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `sigstore/gh-action-sigstore-python` from 3.0.1 to 3.1.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.0.1...v3.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: sigstore/gh-action-sigstore-python dependency-version: 3.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a52bd94 commit c71613d

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
runs-on: ubuntu-latest
2323

2424
steps:
25-
- uses: actions/checkout@v4
26-
- uses: astral-sh/setup-uv@v6
25+
- uses: actions/checkout@v5
26+
- uses: astral-sh/setup-uv@v7
2727
with:
2828
enable-cache: true
2929
- name: Install just
@@ -43,8 +43,8 @@ jobs:
4343
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
4444

4545
steps:
46-
- uses: actions/checkout@v4
47-
- uses: astral-sh/setup-uv@v6
46+
- uses: actions/checkout@v5
47+
- uses: astral-sh/setup-uv@v7
4848
with:
4949
python-version: ${{ matrix.python-version }}
5050
enable-cache: true

.github/workflows/publish-to-pypi.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Set up Python
13-
uses: actions/setup-python@v5
13+
uses: actions/setup-python@v6
1414
with:
1515
python-version: "3.x"
1616
- name: Install pypa/build
@@ -22,7 +22,7 @@ jobs:
2222
- name: Build a binary wheel and a source tarball
2323
run: python3 -m build
2424
- name: Store the distribution packages
25-
uses: actions/upload-artifact@v4
25+
uses: actions/upload-artifact@v5
2626
with:
2727
name: python-package-distributions
2828
path: dist/
@@ -41,7 +41,7 @@ jobs:
4141

4242
steps:
4343
- name: Download all the dists
44-
uses: actions/download-artifact@v4
44+
uses: actions/download-artifact@v6
4545
with:
4646
name: python-package-distributions
4747
path: dist/
@@ -62,12 +62,12 @@ jobs:
6262

6363
steps:
6464
- name: Download all the dists
65-
uses: actions/download-artifact@v4
65+
uses: actions/download-artifact@v6
6666
with:
6767
name: python-package-distributions
6868
path: dist/
6969
- name: Sign the dists with Sigstore
70-
uses: sigstore/gh-action-sigstore-python@v3.0.1
70+
uses: sigstore/gh-action-sigstore-python@v3.1.0
7171
with:
7272
inputs: >-
7373
./dist/*.tar.gz

0 commit comments

Comments
 (0)