Skip to content

Commit fb0f0ce

Browse files
authored
Merge pull request #63 from hazcod/feat/warnings
fix: ignore sensors on cloud hosts for user alerting
2 parents e6bb261 + 778bf07 commit fb0f0ce

File tree

6 files changed

+208
-192
lines changed

6 files changed

+208
-192
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,21 @@ updates:
66
interval: daily
77
time: '04:00'
88
open-pull-requests-limit: 10
9-
target-branch: dev
109
- package-ecosystem: docker
1110
directory: "/"
1211
schedule:
1312
interval: daily
1413
time: '04:00'
1514
open-pull-requests-limit: 10
16-
target-branch: dev
1715
- package-ecosystem: github-actions
1816
directory: "/"
1917
schedule:
2018
interval: daily
2119
time: '04:00'
2220
open-pull-requests-limit: 10
23-
target-branch: dev
2421
- package-ecosystem: gomod
2522
directory: "/"
2623
schedule:
2724
interval: daily
2825
time: '04:00'
29-
open-pull-requests-limit: 10
30-
target-branch: dev
26+
open-pull-requests-limit: 10

.github/go/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM golang:1.17.8
1+
FROM golang:1.19

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ build:
88
chmod +x slacker
99

1010
run:
11-
go run ./cmd/ -dry -config=test.yml -noreport -log=trace
11+
go run ./cmd/ -dry -config=test.yml -log=trace

go.mod

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,21 @@ module github.com/hazcod/crowdstrike-spotlight-slacker
33
go 1.16
44

55
require (
6-
github.com/crowdstrike/gofalcon v0.2.26
6+
github.com/crowdstrike/gofalcon v0.2.32
7+
github.com/go-openapi/jsonreference v0.20.1 // indirect
78
github.com/go-openapi/loads v0.21.2 // indirect
9+
github.com/go-openapi/runtime v0.25.0 // indirect
810
github.com/go-openapi/spec v0.20.7 // indirect
9-
github.com/go-openapi/swag v0.22.3 // indirect
10-
github.com/golang/protobuf v1.5.2 // indirect
1111
github.com/gorilla/websocket v1.5.0 // indirect
1212
github.com/kelseyhightower/envconfig v1.4.0
1313
github.com/mitchellh/mapstructure v1.5.0 // indirect
1414
github.com/pkg/errors v0.9.1
1515
github.com/sirupsen/logrus v1.9.0
16-
github.com/slack-go/slack v0.11.3
17-
go.mongodb.org/mongo-driver v1.10.2 // indirect
18-
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect
19-
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1
20-
golang.org/x/sys v0.0.0-20220913175220-63ea55921009 // indirect
21-
google.golang.org/appengine v1.6.7 // indirect
16+
github.com/slack-go/slack v0.12.1
17+
go.mongodb.org/mongo-driver v1.11.1 // indirect
18+
go.opentelemetry.io/otel v1.11.2 // indirect
19+
golang.org/x/net v0.4.0 // indirect
20+
golang.org/x/oauth2 v0.3.0
2221
google.golang.org/protobuf v1.28.1 // indirect
2322
gopkg.in/errgo.v2 v2.1.0
2423
gopkg.in/yaml.v3 v3.0.1

0 commit comments

Comments
 (0)