build(deps): bump node from b9b5737 to 18e0265
#25
This file contains hidden or 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
| on: [pull_request] | |
| name: PR Checks | |
| jobs: | |
| markdown-link-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: markdown-link-check | |
| uses: ./ | |
| with: | |
| check-modified-files-only: 'yes' | |
| base-branch: 'main' | |
| id: markdown-link-check | |
| - name: display errors | |
| run: | | |
| echo "${{ steps.markdown-link-check.outputs.MLC_OUTPUT }}" | |
| markdown-link-check-folders: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: markdown-link-check | |
| uses: ./ | |
| with: | |
| # Add a test to restrict the test to just dir4 and dir5. | |
| folder-path: './md/dir4, ./md/dir5' | |
| file-path: './md/AdditionalFileTest1.md, ./md/AdditionalFileTest2.md' | |
| shellcheck: | |
| runs-on: [ubuntu-latest] | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1 | |
| with: | |
| egress-policy: audit | |
| - uses: 'bewuethr/shellcheck-action@80bac2daa9fcf95d648200a793d00060857e6dc4' # v2.3.0 |