Skip to content

Commit

Permalink
maint: update go modules
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Dolitsky <[email protected]>
  • Loading branch information
jdolitsky committed Jan 24, 2022
1 parent c8bcede commit 0497080
Show file tree
Hide file tree
Showing 4 changed files with 110 additions and 67 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout source code
uses: actions/checkout@master
uses: actions/checkout@main
- name: setup go environment
uses: actions/setup-go@v1
with:
go-version: '1.15.4'
go-version: '1.17.6'
- name: run tests
run: make test
- name: upload coverage report
uses: actions/upload-artifact@master
uses: actions/upload-artifact@main
with:
name: chartmuseum-storage-coverage-report-${{ github.sha }}
path: coverage.html
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout source code
uses: actions/checkout@master
uses: actions/checkout@main
- name: setup go environment
uses: actions/setup-go@v1
with:
go-version: '1.15.4'
go-version: '1.17.6'
- name: run tests
run: make test
- name: upload coverage report
uses: actions/upload-artifact@master
uses: actions/upload-artifact@main
with:
name: chartmuseum-storage-coverage-report-${{ github.sha }}
path: coverage.html
Expand Down
45 changes: 24 additions & 21 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,28 @@ replace (
)

require (
cloud.google.com/go/storage v1.16.1
github.com/Azure/azure-sdk-for-go v57.1.0+incompatible
cloud.google.com/go/storage v1.18.2
github.com/Azure/azure-sdk-for-go v61.3.0+incompatible
github.com/NetEase-Object-Storage/nos-golang-sdk v0.0.0-00010101000000-000000000000
github.com/aliyun/aliyun-oss-go-sdk v2.1.10+incompatible
github.com/aws/aws-sdk-go v1.40.37
github.com/baidubce/bce-sdk-go v0.9.86
github.com/gophercloud/gophercloud v0.20.0
github.com/aliyun/aliyun-oss-go-sdk v2.2.0+incompatible
github.com/aws/aws-sdk-go v1.42.40
github.com/baidubce/bce-sdk-go v0.9.104
github.com/gophercloud/gophercloud v0.24.0
github.com/oracle/oci-go-sdk v24.3.0+incompatible
github.com/stretchr/testify v1.7.0
github.com/tencentyun/cos-go-sdk-v5 v0.7.30
github.com/tencentyun/cos-go-sdk-v5 v0.7.33
go.etcd.io/etcd v0.0.0-00010101000000-000000000000
golang.org/x/net v0.0.0-20210903162142-ad29c8ab022f
google.golang.org/api v0.56.0
golang.org/x/net v0.0.0-20220121210141-e204ce36a2ba
google.golang.org/api v0.65.0
)

require (
cloud.google.com/go v0.93.3 // indirect
cloud.google.com/go v0.100.2 // indirect
cloud.google.com/go/compute v0.1.0 // indirect
cloud.google.com/go/iam v0.1.1 // indirect
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
github.com/Azure/go-autorest/autorest v0.11.20 // indirect
github.com/Azure/go-autorest/autorest/adal v0.9.13 // indirect
github.com/Azure/go-autorest/autorest v0.11.24 // indirect
github.com/Azure/go-autorest/autorest/adal v0.9.18 // indirect
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
github.com/Azure/go-autorest/logger v0.2.1 // indirect
Expand All @@ -39,15 +41,15 @@ require (
github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dnaeon/go-vcr v1.2.0 // indirect
github.com/form3tech-oss/jwt-go v3.2.2+incompatible // indirect
github.com/gofrs/uuid v4.0.0+incompatible // indirect
github.com/gofrs/uuid v4.2.0+incompatible // indirect
github.com/gogo/protobuf v1.2.1 // indirect
github.com/golang-jwt/jwt/v4 v4.2.0 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.6 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/google/uuid v1.1.1 // indirect
github.com/googleapis/gax-go/v2 v2.1.0 // indirect
github.com/googleapis/gax-go/v2 v2.1.1 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/mozillazg/go-httpheader v0.2.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
Expand All @@ -56,14 +58,15 @@ require (
go.uber.org/atomic v1.3.2 // indirect
go.uber.org/multierr v1.1.0 // indirect
go.uber.org/zap v1.10.0 // indirect
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect
golang.org/x/text v0.3.6 // indirect
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71 // indirect
google.golang.org/grpc v1.40.0 // indirect
google.golang.org/genproto v0.0.0-20220111164026-67b88f271998 // indirect
google.golang.org/grpc v1.40.1 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)
Loading

0 comments on commit 0497080

Please sign in to comment.