Skip to content

Commit c69459f

Browse files
build(deps): Bump the actions group across 1 directory with 6 updates (#54)
Bumps the actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `6` | `8` | | [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) | `3` | `4` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `8.0.0` | `8.2.0` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.5.1` | `7.0.0` | Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `actions/download-artifact` from 6 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v8) Updates `actions/attest-build-provenance` from 3 to 4 - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](actions/attest-build-provenance@v3...v4) Updates `astral-sh/setup-uv` from 8.0.0 to 8.2.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v8.0.0...v8.2.0) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `codecov/codecov-action` from 5.5.1 to 7.0.0 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5.5.1...v7.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/attest-build-provenance dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 8.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5fa3afd commit c69459f

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- uses: actions/checkout@v6
24+
- uses: actions/checkout@v7
2525
with:
2626
fetch-depth: 0
2727
persist-credentials: false
@@ -41,13 +41,13 @@ jobs:
4141
if: github.event_name == 'release' && github.event.action == 'published'
4242

4343
steps:
44-
- uses: actions/download-artifact@v6
44+
- uses: actions/download-artifact@v8
4545
with:
4646
name: Packages
4747
path: dist
4848

4949
- name: Generate artifact attestation for sdist and wheel
50-
uses: actions/attest-build-provenance@v3
50+
uses: actions/attest-build-provenance@v4
5151
with:
5252
subject-path: "dist/*"
5353

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
runs-on: ubuntu-latest
2323
timeout-minutes: 8
2424
steps:
25-
- uses: actions/checkout@v6
25+
- uses: actions/checkout@v7
2626
with:
2727
fetch-depth: 0
2828
persist-credentials: false
2929
- uses: actions/setup-python@v6
3030
with:
3131
python-version: "3.13"
32-
- uses: astral-sh/setup-uv@v8.0.0
33-
- uses: actions/cache@v4
32+
- uses: astral-sh/setup-uv@v8.2.0
33+
- uses: actions/cache@v5
3434
with:
3535
path: ~/.cache/pre-commit
3636
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
@@ -61,7 +61,7 @@ jobs:
6161
runs-on: ubuntu-latest
6262

6363
steps:
64-
- uses: actions/checkout@v6
64+
- uses: actions/checkout@v7
6565
with:
6666
fetch-depth: 0
6767
persist-credentials: false
@@ -71,7 +71,7 @@ jobs:
7171
python-version: ${{ matrix.python-version }}
7272
allow-prereleases: true
7373

74-
- uses: astral-sh/setup-uv@v8.0.0
74+
- uses: astral-sh/setup-uv@v8.2.0
7575

7676
- name: Install package
7777
run: uv sync
@@ -82,4 +82,4 @@ jobs:
8282
--durations=20
8383
8484
- name: Upload coverage report
85-
uses: codecov/codecov-action@v5.5.1
85+
uses: codecov/codecov-action@v7.0.0

0 commit comments

Comments
 (0)