Skip to content

Update Broken Links / Migrate to HTTPS #6

Update Broken Links / Migrate to HTTPS

Update Broken Links / Migrate to HTTPS #6

Workflow file for this run

name: Check Links
on:
push:
branches: [main]
pull_request:
schedule:
- cron: '0 8 * * 1'
jobs:
check-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: ruby/setup-ruby@afeafc3d1ab54a631816aba4c914a0081c12ff2f # v1.310.0
with:
bundler-cache: true
- name: Build site
run: bundle exec jekyll build
- name: Restore htmlproofer cache
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: tmp/.htmlproofer
key: htmlproofer-${{ runner.os }}-${{ hashFiles('tmp/.htmlproofer/cache.json') }}
restore-keys: htmlproofer-${{ runner.os }}-
- name: Check links
run: _scripts/check-links