Skip to content

Commit e4e395d

Browse files
author
Igor Komlew
authored
Bump sentry library version (#325)
* Bump getsentry/sentry-go version to v0.8.0 * Bump getsentry/sentry-go version to v0.8.0 * Don't run go mod tidy for vendoring * Downgrade ubuntu version to 16.04 to have same build as in prod
1 parent c8336e6 commit e4e395d

File tree

4 files changed

+66
-14
lines changed

4 files changed

+66
-14
lines changed

.github/workflows/pr-golang.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: [pull_request]
33
jobs:
44
build:
55
name: Test
6-
runs-on: ubuntu-latest
6+
runs-on: ubuntu-16.04
77
steps:
88
- name: Set up Go
99
uses: actions/setup-go@v1

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ vendor:
9898
vendoring-ci: mkdir-tmp
9999
rm -rf ${VENDOR_TMP}
100100
${GO} mod vendor
101-
${GO} mod tidy
102101
mv ${VENDOR} ${VENDOR_TMP}
103102
git clone $(VENDOR_BRANCH_URL) $(VENDOR)
104103
cp -r ${VENDOR_TMP} .

go.mod

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,35 +3,36 @@ module github.com/CanonicalLtd/serial-vault
33
go 1.13
44

55
require (
6+
github.com/CloudyKit/jet v2.1.3-0.20180809161101-62edd43e4f88+incompatible // indirect
7+
github.com/Joker/jade v1.0.1-0.20190614124447-d475f43051e7 // indirect
68
github.com/Masterminds/squirrel v1.2.0
79
github.com/dgrijalva/jwt-go v3.2.0+incompatible
8-
github.com/getsentry/sentry-go v0.7.0
10+
github.com/flosch/pongo2 v0.0.0-20190707114632-bbf5a6c351f4 // indirect
11+
github.com/getsentry/sentry-go v0.8.0
912
github.com/godbus/dbus v4.1.0+incompatible // indirect
13+
github.com/gorilla/context v1.1.1 // indirect
1014
github.com/gorilla/csrf v1.0.3-0.20161122164500-69581736821c
1115
github.com/gorilla/mux v1.6.1
12-
github.com/gorilla/securecookie v1.1.1
16+
github.com/gorilla/securecookie v1.1.1 // indirect
17+
github.com/iris-contrib/i18n v0.0.0-20171121225848-987a633949d0 // indirect
1318
github.com/jessevdk/go-flags v1.4.0
1419
github.com/juju/ratelimit v1.0.1 // indirect
1520
github.com/juju/usso v0.0.0-20160418121039-5b79b358f4bb
16-
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0
17-
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0
1821
github.com/lib/pq v0.0.0-20180327071824-d34b9ff171c2
1922
github.com/mattn/go-sqlite3 v1.6.0
20-
github.com/ojii/gettext.go v0.0.0-20170120061437-b6dae1d7af8a
23+
github.com/mediocregopher/mediocre-go-lib v0.0.0-20181029021733-cb65787f37ed // indirect
24+
github.com/ojii/gettext.go v0.0.0-20170120061437-b6dae1d7af8a // indirect
2125
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
22-
github.com/pkg/errors v0.8.1
2326
github.com/prometheus/client_golang v1.1.0
2427
github.com/snapcore/bolt v1.3.1 // indirect
2528
github.com/snapcore/go-gettext v0.0.0-20191107141714-82bbea49e785 // indirect
2629
github.com/snapcore/snapd v0.0.0-20200317200833-16631e228c07
27-
github.com/yohcop/openid-go v0.0.0-20170901155220-cfc72ed89575
28-
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
29-
golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297
30-
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a
30+
github.com/yohcop/openid-go v0.0.0-20170901155220-cfc72ed89575 // indirect
31+
golang.org/x/crypto v0.0.0-20191227163750-53104e6ec876
3132
gopkg.in/check.v1 v1.0.0-20161208181325-20d25e280405
3233
gopkg.in/errgo.v1 v1.0.0-20161222125816-442357a80af5
3334
gopkg.in/macaroon.v1 v1.0.0-20170816141150-ab101776739e
34-
gopkg.in/retry.v1 v1.0.0
35-
gopkg.in/tomb.v2 v2.0.0-20161208151619-d5d1b5820637
35+
gopkg.in/retry.v1 v1.0.0 // indirect
36+
gopkg.in/tomb.v2 v2.0.0-20161208151619-d5d1b5820637 // indirect
3637
gopkg.in/yaml.v2 v2.2.4
3738
)

0 commit comments

Comments
 (0)