Skip to content

chore(deps): update module github.com/quic-go/quic-go to v0.54.1 #2881

chore(deps): update module github.com/quic-go/quic-go to v0.54.1

chore(deps): update module github.com/quic-go/quic-go to v0.54.1 #2881

Workflow file for this run

name: Links (Fail Fast)
on:
push:
branches:
- main
pull_request:
# Declare default permissions as read only.
permissions: read-all
jobs:
check-links:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Restore lychee cache
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
id: cache-restore
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
restore-keys: cache-lychee-
- name: Link Checker
uses: lycheeverse/lychee-action@885c65f3dc543b57c898c8099f4e08c8afd178a2 # v2.6.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
fail: true
args: >
--verbose
--no-progress
--max-concurrency 5
--cache
--max-cache-age 1d
--cache-exclude-status 300..=599
"**/*.md"
- name: Save lychee cache
if: always()
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: .lycheecache
key: ${{ steps.cache-restore.outputs.cache-primary-key }}