Skip to content

Commit

Permalink
Merge pull request #41 from hahwul/bump-to-1.5.1
Browse files Browse the repository at this point in the history
Update DeadFinder to version 1.5.1 in README, Dockerfile, and Ruby files
  • Loading branch information
hahwul authored Dec 26, 2024
2 parents 5d4edf8 + e2dede4 commit 1000b60
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ deadfinder sitemap https://www.hahwul.com/sitemap.xml
```yml
steps:
- name: Run DeadFinder
uses: hahwul/[email protected].0
uses: hahwul/[email protected].1
# or uses: hahwul/deadfinder@latest
id: broken-link
with:
Expand Down Expand Up @@ -87,7 +87,7 @@ Options:
H, [--headers=one two three] # Custom HTTP headers to send with initial request
[--worker-headers=one two three] # Custom HTTP headers to send with worker requests
[--user-agent=USER_AGENT] # User-Agent string to use for requests
# Default: Mozilla/5.0 (compatible; DeadFinder/1.5.0;)
# Default: Mozilla/5.0 (compatible; DeadFinder/1.5.1;)
p, [--proxy=PROXY] # Proxy server to use for requests
s, [--silent], [--no-silent] # Silent mode
v, [--verbose], [--no-verbose] # Verbose mode
Expand Down
2 changes: 1 addition & 1 deletion github-action/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the deadfinder base image from GitHub Container Registry
FROM ghcr.io/hahwul/deadfinder:1.5.0
FROM ghcr.io/hahwul/deadfinder:1.5.1

# Install jq for JSON processing
RUN apt-get update && apt-get install -y jq
Expand Down
2 changes: 1 addition & 1 deletion lib/deadfinder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ class DeadFinder < Thor
class_option :headers, aliases: :H, default: [], type: :array,
desc: 'Custom HTTP headers to send with initial request'
class_option :worker_headers, default: [], type: :array, desc: 'Custom HTTP headers to send with worker requests'
class_option :user_agent, default: 'Mozilla/5.0 (compatible; DeadFinder/1.5.0;)', type: :string,
class_option :user_agent, default: 'Mozilla/5.0 (compatible; DeadFinder/1.5.1;)', type: :string,
desc: 'User-Agent string to use for requests'
class_option :proxy, aliases: :p, default: '', type: :string, desc: 'Proxy server to use for requests'
class_option :silent, aliases: :s, default: false, type: :boolean, desc: 'Silent mode'
Expand Down
2 changes: 1 addition & 1 deletion lib/deadfinder/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# frozen_string_literal: true

VERSION = '1.5.0'
VERSION = '1.5.1'

0 comments on commit 1000b60

Please sign in to comment.