Skip to content

Commit

Permalink
Merge pull request #65 from fishbrain/update-ddog
Browse files Browse the repository at this point in the history
A bunch of cleanup and updates
  • Loading branch information
lhansford authored Aug 22, 2024
2 parents 9c17523 + 139c444 commit 6bf91c6
Show file tree
Hide file tree
Showing 7 changed files with 243 additions and 83 deletions.
6 changes: 0 additions & 6 deletions .dependabot/config.yml

This file was deleted.

34 changes: 16 additions & 18 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,26 @@
name: Go
on: [push]
jobs:

build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Set up Go 1.13
uses: actions/setup-go@v5
with:
go-version: 1.13
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
id: go

- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: go build -v .
- name: Build
run: go build -v .
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
go 1.23
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
# logging-go
# logging-go

Shared logging functionality for our Go services.

## Developing

To test:

```sh
go test
```

## Releasing

Create a Release in Github.
53 changes: 36 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,25 +1,44 @@
module github.com/fishbrain/logging-go

replace github.com/bugsnag/bugsnag-go => github.com/fishbrain/bugsnag-go v1.5.4-0.20191022091625-953940cbbbeb

go 1.13
go 1.23

require (
github.com/DataDog/datadog-go v3.4.0+incompatible // indirect
github.com/bitly/go-simplejson v0.5.0 // indirect
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
github.com/bugsnag/bugsnag-go v1.5.3
github.com/bugsnag/panicwrap v1.2.0 // indirect
github.com/gofrs/uuid v3.2.0+incompatible // indirect
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/bugsnag/bugsnag-go/v2 v2.4.0
github.com/nsqio/go-nsq v1.1.0
github.com/opentracing/opentracing-go v1.1.0 // indirect
github.com/philhofer/fwd v1.0.0 // indirect
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.9.0
github.com/tinylib/msgp v1.1.1 // indirect
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
gopkg.in/DataDog/dd-trace-go.v1 v1.23.1
gopkg.in/DataDog/dd-trace-go.v1 v1.66.0
)

require (
github.com/DataDog/appsec-internal-go v1.6.0 // indirect
github.com/DataDog/datadog-agent/pkg/obfuscate v0.48.0 // indirect
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.48.1 // indirect
github.com/DataDog/datadog-go/v5 v5.3.0 // indirect
github.com/DataDog/go-libddwaf/v3 v3.2.1 // indirect
github.com/DataDog/go-tuf v1.0.2-0.5.2 // indirect
github.com/DataDog/sketches-go v1.4.5 // indirect
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/bugsnag/panicwrap v1.3.4 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/ebitengine/purego v0.6.0-alpha.5 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
github.com/outcaste-io/ristretto v0.2.3 // indirect
github.com/philhofer/fwd v1.1.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/secure-systems-lab/go-securesystemslib v0.7.0 // indirect
github.com/tinylib/msgp v1.1.8 // indirect
go.uber.org/atomic v1.11.0 // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.16.1 // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 6bf91c6

Please sign in to comment.