-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump actions/checkout from 4.1.5 to 4.1.6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.5 to 4.1.6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.1.5...v4.1.6) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
9dcea19
commit cb78cdd
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
outputs: | ||
matrix: ${{ steps.set-matrix.outputs.matrix }} | ||
steps: | ||
- uses: actions/[email protected].5 | ||
- uses: actions/[email protected].6 | ||
- id: set-matrix | ||
run: | | ||
set -x | ||
|
@@ -31,7 +31,7 @@ jobs: | |
- name: Install markdown-link-check | ||
run: sudo npm install -g markdown-link-check | ||
|
||
- uses: actions/[email protected].5 | ||
- uses: actions/[email protected].6 | ||
|
||
- name: Run markdown-link-check against *.md files | ||
run: markdown-link-check --config "$(pwd)/.markdown-link-check.json" --verbose --quiet "${{ matrix.file_to_check }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
markdownlint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].5 | ||
- uses: actions/[email protected].6 | ||
- name: Pull markdownlint/markdownlint:latest Image | ||
run: docker pull markdownlint/markdownlint:latest | ||
- name: Run markdownlint against *.md files | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,15 +10,15 @@ jobs: | |
spellcheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].5 | ||
- uses: actions/[email protected].6 | ||
- name: Pull pipelinecomponents/markdown-spellcheck Image | ||
run: docker pull pipelinecomponents/markdown-spellcheck | ||
- name: Spellcheck Markdown Files | ||
run: docker run --rm -i -v "$PWD:/github/workspace" --workdir /github/workspace -e FORCE_COLOR=1 pipelinecomponents/markdown-spellcheck --report "**/*.md" -n -a | ||
# spelling: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/[email protected].5 | ||
# - uses: actions/[email protected].6 | ||
# - name: Set up Python | ||
# uses: actions/[email protected] | ||
# with: | ||
|