chore(deps): update all github action dependencies #91
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
name: Check docs links | |
on: | |
pull_request: | |
paths: | |
- 'docs/content/**.md' | |
- '.github/workflows/check-links-pr.yaml' | |
jobs: | |
links-checker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
with: | |
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@16361eb4acea8698b220b76c0d4e84e1fd22c61d # v2.6.0 | |
with: | |
hugo-version: '0.111.2' | |
extended: true | |
- name: Serve the Hugo website | |
working-directory: docs | |
run: hugo server & | |
- name: Wait for server to be ready | |
uses: nick-invision/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2.9.0 | |
with: | |
timeout_seconds: 2 | |
max_attempts: 10 | |
retry_wait_seconds: 3 | |
command: | | |
set -e | |
curl -s http://localhost:1313 > /dev/null | |
- name: Links Checker | |
id: lychee | |
uses: lycheeverse/lychee-action@2b973e86fc7b1f6b36a93795fe2c9c6ae1118621 # v1.10.0 | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
with: | |
args: --base http://localhost:1313 --exclude cilium.herokuapp.com docs/content | |
fail: true | |
format: json | |