Skip to content

Commit 6616c59

Browse files
Bump actions/checkout from 4.2.2 to 5.0.0 (#171)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 5.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.2.2...v5.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 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>
1 parent 9e72870 commit 6616c59

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/check_links.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
outputs:
1515
matrix: ${{ steps.set-matrix.outputs.matrix }}
1616
steps:
17-
- uses: actions/checkout@v4.2.2
17+
- uses: actions/checkout@v5.0.0
1818
- id: set-matrix
1919
run: |
2020
set -x
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install markdown-link-check
3232
run: sudo npm install -g markdown-link-check
3333

34-
- uses: actions/checkout@v4.2.2
34+
- uses: actions/checkout@v5.0.0
3535

3636
- name: Run markdown-link-check against *.md files
3737
run: markdown-link-check --config "$(pwd)/.markdown-link-check.json" --verbose --quiet "${{ matrix.file_to_check }}"

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
markdownlint:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4.2.2
14+
- uses: actions/checkout@v5.0.0
1515
- name: Pull markdownlint/markdownlint:latest Image
1616
run: docker pull markdownlint/markdownlint:latest
1717
- name: Run markdownlint against *.md files

.github/workflows/spellcheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
spellcheck:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4.2.2
13+
- uses: actions/checkout@v5.0.0
1414
- name: Pull pipelinecomponents/markdown-spellcheck Image
1515
run: docker pull pipelinecomponents/markdown-spellcheck
1616
- name: Spellcheck Markdown Files
1717
run: docker run --rm -i -v "$PWD:/github/workspace" --workdir /github/workspace -e FORCE_COLOR=1 pipelinecomponents/markdown-spellcheck --report "**/*.md" -n -a
1818
# spelling:
1919
# runs-on: ubuntu-latest
2020
# steps:
21-
# - uses: actions/checkout@v4.2.2
21+
# - uses: actions/checkout@v5.0.0
2222
# - name: Set up Python
2323
# uses: actions/[email protected]
2424
# with:

0 commit comments

Comments
 (0)