Skip to content

Commit 6efb119

Browse files
committed
update dependencies, prepare v0.0.4 release
1 parent 41d424a commit 6efb119

File tree

5 files changed

+380
-31
lines changed

5 files changed

+380
-31
lines changed

.github/workflows/golangci-lint.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
name: lint
1717
runs-on: ubuntu-latest
1818
steps:
19-
- name: Set up Go 1.17
19+
- name: Set up Go 1.19
2020
uses: actions/setup-go@v1
2121
with:
22-
go-version: 1.17
22+
go-version: 1.19
2323
id: go
2424

2525
- name: install zmq headers

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414

15-
- name: Set up Go 1.17
15+
- name: Set up Go 1.19
1616
uses: actions/setup-go@v1
1717
with:
18-
go-version: 1.17
18+
go-version: 1.19
1919
id: go
2020

2121
- name: install zmq headers

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PROJECT_VERSION := 0.0.3
1+
PROJECT_VERSION := 0.0.4
22
DOCKER_REPO := synfinatic
33
PROJECT_NAME := netflow2ng
44

go.mod

+18-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,25 @@
11
module github.com/synfinatic/netflow2ng
22

3-
go 1.16
3+
go 1.18
44

55
require (
6-
github.com/alecthomas/kong v0.2.18
7-
github.com/cloudflare/goflow/v3 v3.4.2
6+
github.com/alecthomas/kong v0.7.1
7+
github.com/cloudflare/goflow/v3 v3.4.4
88
github.com/golang/protobuf v1.5.2
9-
github.com/pebbe/zmq4 v1.2.8
10-
github.com/prometheus/client_golang v1.11.1
9+
github.com/pebbe/zmq4 v1.2.9
10+
github.com/prometheus/client_golang v1.14.0
1111
github.com/sirupsen/logrus v1.8.1
1212
)
13+
14+
require (
15+
github.com/beorn7/perks v1.0.1 // indirect
16+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
17+
github.com/libp2p/go-reuseport v0.0.1 // indirect
18+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
19+
github.com/pkg/errors v0.9.1 // indirect
20+
github.com/prometheus/client_model v0.3.0 // indirect
21+
github.com/prometheus/common v0.37.0 // indirect
22+
github.com/prometheus/procfs v0.8.0 // indirect
23+
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
24+
google.golang.org/protobuf v1.28.1 // indirect
25+
)

0 commit comments

Comments
 (0)