-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from sensu/maintenance/handler-updates
* Q1 '21 handler maintenance
- Loading branch information
Showing
8 changed files
with
209 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Go Lint | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
name: Lint | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Run golangci-lint | ||
uses: actions-contrib/golangci-lint@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,33 @@ | ||
module github.com/sensu/sensu-pagerduty-handler | ||
|
||
go 1.13 | ||
go 1.14 | ||
|
||
require ( | ||
github.com/PagerDuty/go-pagerduty v0.0.0-20181104233218-fe8f9c4593d0 | ||
github.com/google/go-querystring v1.0.0 // indirect | ||
github.com/pelletier/go-toml v1.6.0 // indirect | ||
github.com/sensu-community/sensu-plugin-sdk v0.10.1 | ||
github.com/sensu/sensu-go/api/core/v2 v2.3.0 | ||
github.com/spf13/afero v1.2.2 // indirect | ||
github.com/PagerDuty/go-pagerduty v1.3.0 | ||
github.com/coreos/etcd v3.3.25+incompatible // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.4.3 // indirect | ||
github.com/google/uuid v1.2.0 // indirect | ||
github.com/json-iterator/go v1.1.10 // indirect | ||
github.com/magiconair/properties v1.8.4 // indirect | ||
github.com/mitchellh/mapstructure v1.4.1 // indirect | ||
github.com/pelletier/go-toml v1.8.1 // indirect | ||
github.com/robertkrimen/otto v0.0.0-20200922221731-ef014fd054ac // indirect | ||
github.com/sensu-community/sensu-plugin-sdk v0.11.0 | ||
github.com/sensu/sensu-go/api/core/v2 v2.6.0 | ||
github.com/sensu/sensu-go/types v0.5.0 // indirect | ||
github.com/sirupsen/logrus v1.7.0 // indirect | ||
github.com/spf13/afero v1.5.1 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/cobra v1.1.3 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/viper v1.7.1 // indirect | ||
github.com/stretchr/testify v1.6.0 | ||
golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa // indirect | ||
golang.org/x/sys v0.0.0-20200120151820-655fe14d7479 // indirect | ||
gopkg.in/ini.v1 v1.51.1 // indirect | ||
golang.org/x/net v0.0.0-20210119194325-5f4716e94777 // indirect | ||
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect | ||
golang.org/x/text v0.3.5 // indirect | ||
google.golang.org/genproto v0.0.0-20210207032614-bba0dbe2a9ea // indirect | ||
google.golang.org/grpc v1.35.0 // indirect | ||
gopkg.in/ini.v1 v1.62.0 // indirect | ||
) |
Oops, something went wrong.