mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2025-12-31 09:49:06 +03:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37 lines
908 B
YAML
37 lines
908 B
YAML
name: 🌐 Check URLs
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
# Every day at 18:00 UTC.
|
|
# URLs can decay over time. Setting up a schedule makes it possible to be warned
|
|
# about dead links as soon as possible.
|
|
- cron: "0 18 * * *"
|
|
|
|
jobs:
|
|
check-urls:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
|
|
- uses: actions/checkout@v5
|
|
|
|
- name: Restore lychee cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: .lycheecache
|
|
key: cache-lychee-${{ github.sha }}
|
|
restore-keys: cache-lychee-
|
|
|
|
- name: Run lychee
|
|
uses: lycheeverse/lychee-action@v2
|
|
with:
|
|
args: >
|
|
--base .
|
|
--no-progress
|
|
--cache
|
|
--max-cache-age 1d
|
|
"**/*.md" "**/*.gd" "**/*.cs" "**/*.tscn" "**/*.tres" "**/*.html"
|
|
|
|
- name: Fail if there were link errors
|
|
run: exit ${{ steps.lc.outputs.exit_code }}
|