This repository has been archived by the owner on Jun 27, 2024. It is now read-only.
Update urllib3 requirement from <=1.26.16 to <=2.2.2 #228
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: Broken Links Crawler | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Link Checker | |
id: lc | |
uses: peter-evans/link-checker@v1 | |
with: | |
args: --exclude github.com -v -r * | |
- name: Fail if there were link errors | |
run: exit ${{ steps.lc.outputs.exit_code }} |