Skip to content

Commit 08ea1da

Browse files
dependabot[bot]richm
authored andcommitted
ci: 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>
1 parent f895d73 commit 08ea1da

15 files changed

+18
-18
lines changed

.github/workflows/ansible-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
sudo apt install -y git
2828
2929
- name: Checkout repo
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131

3232
- name: Install tox, tox-lsr
3333
run: |

.github/workflows/ansible-managed-var-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
sudo apt install -y git
2626
2727
- name: Checkout repo
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- name: Install tox, tox-lsr
3131
run: |

.github/workflows/ansible-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
sudo apt install -y git
2929
3030
- name: Checkout repo
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232

3333
- name: Install tox, tox-lsr
3434
run: |

.github/workflows/build_docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
sudo apt install -y git
2626
2727
- name: Check out code
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
with:
3030
fetch-depth: 0
3131
- name: Ensure the docs branch
@@ -48,12 +48,12 @@ jobs:
4848
fi
4949
5050
- name: Checkout the docs branch
51-
uses: actions/checkout@v5
51+
uses: actions/checkout@v6
5252
with:
5353
ref: docs
5454

5555
- name: Fetch README.md and .pandoc_template.html5 template from the workflow branch
56-
uses: actions/checkout@v5
56+
uses: actions/checkout@v6
5757
with:
5858
sparse-checkout: |
5959
README.md

.github/workflows/changelog_to_tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
sudo apt install -y git
2323
2424
- name: checkout PR
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626

2727
- name: Get tag and message from the latest CHANGELOG.md commit
2828
id: tag

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
sudo apt update
3232
sudo apt install -y git
3333
- name: Checkout
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535

3636
- name: Initialize CodeQL
3737
uses: github/codeql-action/init@v4

.github/workflows/codespell.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
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515

1616
- name: Codespell
1717
uses: codespell-project/actions-codespell@v2

.github/workflows/markdownlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
sudo apt install -y git
2626
2727
- name: Check out code
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
# CHANGELOG.md is generated automatically from PR titles and descriptions
3131
# It might have issues but they are not critical

.github/workflows/pr-title-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
commit-checks:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
with:
2323
fetch-depth: 0
2424

.github/workflows/python-unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
sudo apt install -y git
4141
4242
- name: checkout PR
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444

4545
- name: Set up Python 2.7
4646
if: ${{ matrix.pyver_os.ver == '2.7' }}

0 commit comments

Comments
 (0)