Skip to content

Commit f41e211

Browse files
committed
Update actions/checkout to version 6 in CI workflows
1 parent 7dd2ac0 commit f41e211

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
python-version: ["3.14", "3.13", "3.12", "3.11", "3.10"]
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Set up Python ${{ matrix.python-version }}
1919
uses: actions/setup-python@v5
2020
with:

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
url: ${{ steps.deployment.outputs.page_url }}
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
3131
- name: Build documentation
3232
run: docker run -v ${PWD}:/docs squidfunk/mkdocs-material build
3333
- name: Setup Pages

.github/workflows/publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
python-version: ["3.14", "3.13", "3.12", "3.11", "3.10"]
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- name: Set up Python ${{ matrix.python-version }}
2121
uses: actions/setup-python@v5
2222
with:
@@ -34,9 +34,11 @@ jobs:
3434
permissions:
3535
id-token: write
3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v6
3838
- name: Set up Python
3939
uses: actions/setup-python@v5
40+
with:
41+
python-version: "3.14"
4042
- name: Install build dependencies
4143
run: |
4244
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)