Skip to content

Commit

Permalink
Update urlcheck.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hillarymarler committed Aug 28, 2024
1 parent ee91886 commit c48bb34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/urlcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
name: Checkout repository
uses: actions/checkout@v3

- name: Install dependencies
name: Install dependencies
run: sudo apt-get install -y curl

- name: Find and check URLs
name: Find and check URLs
run: |
grep -Eo '(http|https)://[^/"]+' -r . | while read -r url; do
if ! curl --output /dev/null --silent --head --fail "$url"; then
Expand Down

0 comments on commit c48bb34

Please sign in to comment.