rebase: bump snyk/actions/golang from cdb760004ba9ea4d525f2e043745dfe85bb9077e to 12140f4059e244892ae643824a95459a102120dd #1076
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
| --- | |
| # link-check is a GitHub Action that checks for broken links in markdown files | |
| # Reference https://github.com/lycheeverse/lychee-action | |
| name: link-check | |
| # yamllint disable-line rule:truthy | |
| on: | |
| pull_request: | |
| branches: | |
| - '*' | |
| permissions: | |
| contents: read | |
| # cancel the in-progress workflow when PR is refreshed. | |
| concurrency: | |
| # yamllint disable-line rule:truthy rule:line-length | |
| group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| link-check: | |
| name: link-check | |
| runs-on: ubuntu-latest | |
| steps: | |
| # yamllint disable-line rule:line-length | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: link-check | |
| run: make containerized-test TARGET=link-check |