Skip to content

Commit be4d86c

Browse files
Bump the all-github-actions group with 5 updates
Bumps the all-github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `6` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python) | `3.0.1` | `3.1.0` | 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 `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/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) 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: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-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: all-github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent e81bd35 commit be4d86c

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
run: echo $GITHUB_CONTEXT
3232

3333
- name: Checkout code
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
persist-credentials: false
3737

3838
- name: Set up Python ${{ matrix.python-version }}
39-
uses: astral-sh/setup-uv@v6
39+
uses: astral-sh/setup-uv@v7
4040
with:
4141
enable-cache: true
4242
cache-dependency-glob: "pyproject.toml"
@@ -70,19 +70,19 @@ jobs:
7070

7171
steps:
7272
- name: Checkout code
73-
uses: actions/checkout@v5
73+
uses: actions/checkout@v6
7474
with:
7575
persist-credentials: false
7676
fetch-depth: 0
7777

7878
- name: Set up Python
79-
uses: astral-sh/setup-uv@v6
79+
uses: astral-sh/setup-uv@v7
8080

8181
- name: build package
8282
run: uv build
8383

8484
- name: upload artifact
85-
uses: actions/upload-artifact@v4
85+
uses: actions/upload-artifact@v5
8686
with:
8787
name: distributions
8888
path: dist/
@@ -100,7 +100,7 @@ jobs:
100100
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
101101
steps:
102102
- name: Download all the dists
103-
uses: actions/download-artifact@v5
103+
uses: actions/download-artifact@v6
104104
with:
105105
name: distributions
106106
path: dist/
@@ -124,7 +124,7 @@ jobs:
124124

125125
steps:
126126
- name: Download all the dists
127-
uses: actions/download-artifact@v5
127+
uses: actions/download-artifact@v6
128128
with:
129129
name: distributions
130130
path: dist/
@@ -146,12 +146,12 @@ jobs:
146146
id-token: write # IMPORTANT: mandatory for sigstore
147147
steps:
148148
- name: Download all the dists
149-
uses: actions/download-artifact@v5
149+
uses: actions/download-artifact@v6
150150
with:
151151
name: distributions
152152
path: dist/
153153
- name: Sign the dists with Sigstore
154-
uses: sigstore/gh-action-sigstore-python@v3.0.1
154+
uses: sigstore/gh-action-sigstore-python@v3.1.0
155155
with:
156156
inputs: >-
157157
./dist/*.tar.gz

.github/workflows/doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323

2424
- name: Setup python binary
2525
uses: actions/setup-python@v6

0 commit comments

Comments
 (0)