Skip to content

Commit a8c87af

Browse files
Bump the github-actions group across 2 directories with 3 updates
Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Bumps the github-actions group with 3 updates in the /template/.github/workflows directory: [actions/checkout](https://github.com/actions/checkout), [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/checkout` from 7.0.0 to 7.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v7.0.0...v7.0.1) Updates `astral-sh/setup-uv` from 8.2.0 to 9.0.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v8.2.0...v9.0.0) Updates `actions/checkout` from 7.0.0 to 7.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v7.0.0...v7.0.1) Updates `astral-sh/setup-uv` from 8.2.0 to 9.0.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v8.2.0...v9.0.0) Updates `actions/setup-python` from 6.3.0 to 7.0.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6.3.0...v7.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: astral-sh/setup-uv dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: astral-sh/setup-uv dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9654b23 commit a8c87af

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
# https://github.com/actions/checkout
2222
- name: Checkout
23-
uses: actions/checkout@v7.0.0
23+
uses: actions/checkout@v7.0.1
2424
with:
2525
persist-credentials: false
2626

.github/workflows/test-template.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
matrix:
1515
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1616
steps:
17-
- uses: actions/checkout@v7.0.0
17+
- uses: actions/checkout@v7.0.1
1818
with:
1919
fetch-depth: 0
20-
- uses: astral-sh/setup-uv@v8.2.0
20+
- uses: astral-sh/setup-uv@v9.0.0
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- run: uv sync --group test
@@ -32,10 +32,10 @@ jobs:
3232
os: [ubuntu-latest, windows-latest]
3333
python-version: ["3.10", "3.14"]
3434
steps:
35-
- uses: actions/checkout@v7.0.0
35+
- uses: actions/checkout@v7.0.1
3636
with:
3737
fetch-depth: 0
38-
- uses: astral-sh/setup-uv@v8.2.0
38+
- uses: astral-sh/setup-uv@v9.0.0
3939
with:
4040
python-version: ${{ matrix.python-version }}
4141
- name: Install just

.github/workflows/typos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
# https://github.com/actions/checkout
2020
- name: Checkout
21-
uses: actions/checkout@v7.0.0
21+
uses: actions/checkout@v7.0.1
2222
with:
2323
persist-credentials: false
2424

template/.github/workflows/deploy-docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
# https://github.com/actions/checkout
2626
- name: Checkout
27-
uses: actions/checkout@v7.0.0
27+
uses: actions/checkout@v7.0.1
2828
with:
2929
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
3030

@@ -37,15 +37,15 @@ jobs:
3737
3838
# https://github.com/astral-sh/setup-uv
3939
- name: Install uv
40-
uses: astral-sh/setup-uv@v8.2.0
40+
uses: astral-sh/setup-uv@v9.0.0
4141
with:
4242
python-version: ${{ matrix.pyversion }}
4343
enable-cache: true
4444
cache-dependency-glob: "uv.lock"
4545

4646
# https://github.com/actions/setup-python
4747
- name: Set up Python
48-
uses: actions/setup-python@v6.3.0
48+
uses: actions/setup-python@v7.0.0
4949
with:
5050
python-version: ${{ matrix.pyversion }}
5151

template/.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,21 @@ jobs:
2626

2727
# https://github.com/actions/checkout
2828
- name: Check out repository
29-
uses: actions/checkout@v7.0.0
29+
uses: actions/checkout@v7.0.1
3030
with:
3131
persist-credentials: false
3232

3333
# https://github.com/astral-sh/setup-uv
3434
- name: Install uv
35-
uses: astral-sh/setup-uv@v8.2.0
35+
uses: astral-sh/setup-uv@v9.0.0
3636
with:
3737
python-version: ${{ matrix.python-version }}
3838
enable-cache: true
3939
cache-dependency-glob: "uv.lock"
4040

4141
# https://github.com/actions/setup-python
4242
- name: Set up Python ${{ matrix.python-version }}
43-
uses: actions/setup-python@v6.3.0
43+
uses: actions/setup-python@v7.0.0
4444
with:
4545
python-version: ${{ matrix.python-version }}
4646

0 commit comments

Comments
 (0)