This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
chore(deps): update actions/checkout action to v4.1.7 #113
Workflow file for this run
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: links | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- .github/workflows/links.yml | |
- lychee.toml | |
schedule: | |
- cron: "0 0 * * 1" | |
permissions: read-all | |
jobs: | |
links: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup Pages | |
id: pages | |
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0 | |
- name: Restore lychee cache | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: .lycheecache | |
key: cache-lychee-${{ github.sha }} | |
restore-keys: cache-lychee- | |
- name: Link Checker | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
uses: lycheeverse/lychee-action@2b973e86fc7b1f6b36a93795fe2c9c6ae1118621 # v1.10.0 | |
with: | |
args: ". --exclude-path CHANGELOG.md ${{ steps.pages.outputs.base_url }}" | |
fail: true |