Skip to content

Commit 5c61308

Browse files
authoredSep 29, 2020
Bee ci changes (#250)
* 1.10.0 release * building CI * building CI
2 parents 4deb5ef + 2868e13 commit 5c61308

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed
 

‎.github/FUNDING.yml

-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
11
github: bee-san
2-
patreon: brandonskerritt
3-
ko_fi: hacker
4-
custom: ["https://monzo.me/bee", "https://paypal.me/brandonskerritt"]

‎.github/workflows/bump.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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

‎src/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,8 @@ fn build_nmap_arguments<'a>(
213213
/// Parses the string(s) into IPs
214214
fn 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) {

0 commit comments

Comments
 (0)
Please sign in to comment.