Skip to content

Commit 1df6324

Browse files
Bump actions/checkout from 6.0.1 to 6.0.2 (#182)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.1 to 6.0.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6.0.1...v6.0.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5df2a21 commit 1df6324

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@v6.0.1
17+
- uses: actions/checkout@v6.0.2
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@v6.0.1
34+
- uses: actions/checkout@v6.0.2
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@v6.0.1
14+
- uses: actions/checkout@v6.0.2
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@v6.0.1
13+
- uses: actions/checkout@v6.0.2
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@v6.0.1
21+
# - uses: actions/checkout@v6.0.2
2222
# - name: Set up Python
2323
# uses: actions/setup-python@v5.1.0
2424
# with:

0 commit comments

Comments
 (0)