Skip to content

Commit 2d29f82

Browse files
dependabot[bot]richm
authored andcommitted
Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 14d42ea commit 2d29f82

11 files changed

+13
-13
lines changed

.github/workflows/ansible-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
sudo apt install -y git
2525
2626
- name: Checkout repo
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Fix up role meta/main.yml namespace and name
3030
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@v3
28+
uses: actions/checkout@v4
2929

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

.github/workflows/ansible-plugin-scan.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@v3
28+
uses: actions/checkout@v4
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@v3
31+
uses: actions/checkout@v4
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@v3
28+
uses: actions/checkout@v4
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@v3
51+
uses: actions/checkout@v4
5252
with:
5353
ref: docs
5454

5555
- name: Fetch README.md and .pandoc_template.html5 template from the workflow branch
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
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@v3
25+
uses: actions/checkout@v4
2626

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

.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@v3
28+
uses: actions/checkout@v4
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
@@ -17,7 +17,7 @@ jobs:
1717
commit-checks:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323

.github/workflows/test_converting_readme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
sudo apt install -y git
2727
2828
- name: Check out code
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030

3131
- name: Remove badges from README.md prior to converting to HTML
3232
run: sed -i '1,8 {/^\[\!.*actions\/workflows/d}' README.md

.github/workflows/weekly_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
sudo apt install -y git
3131
3232
- name: Checkout latest code
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
with:
3535
fetch-depth: 0
3636
- name: Create and push empty commit

0 commit comments

Comments
 (0)