Skip to content

Commit 82b6648

Browse files
Bump actions/checkout from 5 to 6 (#164)
* Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: auto-apply pre-commit fixes --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 55e41bb commit 82b6648

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-24.04
1515
steps:
1616
# checks out the repo
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
with:
1919
# fetch tags for versioning details
2020
fetch-depth: 0

.github/workflows/publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-24.04
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323
- uses: actions/setup-python@v6

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
id-token: write
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222
- name: Python setup

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.actor != 'dependabot[bot]'
1717
steps:
1818
# checks out the repo
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- name: Python setup
2121
uses: actions/setup-python@v6
2222
with:
@@ -45,7 +45,7 @@ jobs:
4545
OS: ${{ matrix.os }}
4646
steps:
4747
- name: Checkout
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949
- name: Python setup
5050
uses: actions/setup-python@v6
5151
with:

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ repos:
5050
- id: yamllint
5151
exclude: pre-commit-config.yaml
5252
- repo: https://github.com/rhysd/actionlint
53-
rev: v1.7.8
53+
rev: v1.7.9
5454
hooks:
5555
- id: actionlint
5656
- repo: https://github.com/astral-sh/ruff-pre-commit
57-
rev: "v0.14.5"
57+
rev: "v0.14.6"
5858
hooks:
5959
- id: ruff-format
6060
- id: ruff-check

0 commit comments

Comments
 (0)