Skip to content

Commit 9a567d3

Browse files
dependabot[bot]Tom
authored andcommitted
workflows: bump actions/checkout from 4 to 5 (fluent#2043)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Signed-off-by: Tom <[email protected]>
1 parent c729f96 commit 9a567d3

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/pr-lint.yaml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
name: PR - Actionlint
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- run: |
1313
echo "::add-matcher::.github/actionlint-matcher.json"
1414
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
@@ -19,14 +19,24 @@ jobs:
1919
runs-on: ubuntu-latest
2020
name: PR - Shellcheck
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- uses: ludeeus/action-shellcheck@master
2424

25+
markdownlint:
26+
name: runner / markdownlint
27+
runs-on: ubuntu-latest
28+
steps:
29+
- uses: actions/checkout@v5
30+
- name: markdownlint
31+
uses: prologic/[email protected]
32+
with:
33+
github_token: ${{ secrets.GITHUB_TOKEN }}
34+
reporter: github-pr-review # Change reporter. (Only `github-pr-check` is supported at the moment).
2535
vale:
2636
name: runner / vale
2737
runs-on: ubuntu-latest
2838
steps:
29-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
3040
- uses: errata-ai/[email protected]
3141
with:
3242
files: all

0 commit comments

Comments
 (0)