File tree 4 files changed +21
-4
lines changed
4 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 1
1
github : 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>(
213
213
/// Parses the string(s) into IPs
214
214
fn parse_addresses ( opts : & Opts ) -> Vec < IpAddr > {
215
215
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 ( ) ;
217
218
218
219
for ip_or_host in & opts. addresses {
219
220
match read_ips_from_file ( ip_or_host. to_owned ( ) , & resolver) {
You can’t perform that action at this time.
0 commit comments