Skip to content

Commit ee009a1

Browse files
Bump the major group with 5 updates
Bumps the major group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `6` | `7` | | [lycheeverse/lychee-action](https://github.com/lycheeverse/lychee-action) | `1` | `2` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `7` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...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 `lycheeverse/lychee-action` from 1 to 2 - [Release notes](https://github.com/lycheeverse/lychee-action/releases) - [Commits](lycheeverse/lychee-action@v1...v2) Updates `actions/upload-artifact` from 3 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v6) Updates `actions/download-artifact` from 3 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major - dependency-name: lycheeverse/lychee-action dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1d2a82e commit ee009a1

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/docs-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323

2424
- name: Set up uv (with Python)
25-
uses: astral-sh/setup-uv@v6
25+
uses: astral-sh/setup-uv@v7
2626

2727
- name: Install dependencies
2828
run: uv sync --locked --no-default-groups --no-install-project --group docs
@@ -31,7 +31,7 @@ jobs:
3131
run: uv run --no-project mkdocs build --strict
3232

3333
- name: Link check (external and internal)
34-
uses: lycheeverse/lychee-action@v1
34+
uses: lycheeverse/lychee-action@v2
3535
with:
3636
args: --no-progress --verbose --accept 200,429 --base . "site/**/*.html"
3737
env:

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616

1717
- name: Install uv and set the python version
1818
uses: astral-sh/setup-uv@v7
@@ -21,7 +21,7 @@ jobs:
2121
run: uv build
2222

2323
- name: Store package distributions
24-
uses: actions/upload-artifact@v3
24+
uses: actions/upload-artifact@v6
2525
with:
2626
name: python-package-distributions
2727
path: dist/
@@ -40,7 +40,7 @@ jobs:
4040

4141
steps:
4242
- name: Download all the dists
43-
uses: actions/download-artifact@v3
43+
uses: actions/download-artifact@v7
4444
with:
4545
name: python-package-distributions
4646
path: dist/

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2121

2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424
- name: Install uv and set the python version
25-
uses: astral-sh/setup-uv@v6
25+
uses: astral-sh/setup-uv@v7
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828

0 commit comments

Comments
 (0)