File tree Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 11github : bee-san
2- patreon : brandonskerritt
3- ko_fi : hacker
4- custom : ["https://monzo.me/bee", "https://paypal.me/brandonskerritt"]
Original file line number Diff line number Diff line change 1+ name : Bump
2+
3+ on :
4+ push :
5+ tags :
6+ - ' *'
7+
8+ jobs :
9+ bump :
10+ runs-on : macos-latest
11+ steps :
12+ - name : Checkout repo
13+ uses : actions/checkout@v2
14+ - name : Bump formulae
15+ uses : dawidd6/action-homebrew-bump-formula@v3
16+ continue-on-error : true
17+ with :
18+ token : ${{secrets.brew}}
19+ formula : rustscan
File renamed without changes.
Original file line number Diff line number Diff line change @@ -213,7 +213,8 @@ fn build_nmap_arguments<'a>(
213213/// Parses the string(s) into IPs
214214fn parse_addresses ( opts : & Opts ) -> Vec < IpAddr > {
215215 let mut ips: Vec < IpAddr > = Vec :: new ( ) ;
216- let resolver = & Resolver :: new ( ResolverConfig :: default ( ) , ResolverOpts :: default ( ) ) . unwrap ( ) ;
216+ let resolver =
217+ & Resolver :: new ( ResolverConfig :: cloudflare_tls ( ) , ResolverOpts :: default ( ) ) . unwrap ( ) ;
217218
218219 for ip_or_host in & opts. addresses {
219220 match read_ips_from_file ( ip_or_host. to_owned ( ) , & resolver) {
You can’t perform that action at this time.
0 commit comments