Skip to content

Commit e915c48

Browse files
committed
chore(ci): use actions/checkout@v6
1 parent d7a01a5 commit e915c48

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ruff.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@ on:
99
jobs:
1010
ruff-check:
1111
runs-on: ubuntu-latest
12-
12+
1313
steps:
14-
- uses: actions/checkout@v4
15-
14+
- uses: actions/checkout@v6
15+
1616
- name: Install uv
1717
uses: astral-sh/setup-uv@v1
1818
with:
1919
version: "latest"
20-
20+
2121
- name: Set up Python
2222
uses: actions/setup-python@v4
2323
with:
2424
python-version: "3.12"
25-
25+
2626
- name: Install dependencies
2727
run: UV_GIT_LFS=1 uv sync --dev
28-
28+
2929
- name: Run ruff linter
3030
run: uv run ruff check --output-format=github .
31-
31+
3232
- name: Run ruff formatter
33-
run: uv run ruff format --check --diff .
33+
run: uv run ruff format --check --diff .

.github/workflows/tag-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 2
2020
fetch-tags: true

.github/workflows/template-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818

1919
- name: Check template files not tracked in git
2020
run: |

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515

1616
- name: Install uv
1717
uses: astral-sh/setup-uv@v1

0 commit comments

Comments
 (0)