Skip to content

Commit

Permalink
Chore: Update dependabot configuration to not use private registry cr…
Browse files Browse the repository at this point in the history
…eds (#462)
  • Loading branch information
Dragos Dumitrache authored Aug 4, 2022
1 parent 44d7a11 commit 6bddd3f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 24 deletions.
19 changes: 0 additions & 19 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,4 @@
version: 2
registries:
docker-registry-eu-gcr-io:
type: docker-registry
url: https://eu.gcr.io
username: _json_key
password: "${{secrets.DOCKER_REGISTRY_EU_GCR_IO_PASSWORD}}"
github-org-private:
type: git
url: https://github.com
username: x-access-token
password: "${{secrets.GIT_HUB_ROBOT_TOKEN}}"
github-org-ruby-private:
type: rubygems-server
url: https://rubygems.pkg.github.com/gocardless
username: gocardless-robot-readonly
password: "${{secrets.GIT_HUB_ROBOT_TOKEN}}"

updates:
- package-ecosystem: docker
Expand All @@ -31,9 +15,6 @@ updates:
interval: weekly
open-pull-requests-limit: 10
insecure-external-code-execution: allow
registries:
- github-org-private
- github-org-ruby-private
versioning-strategy: auto
allow:
# Allow both direct and indirect updates for all packages
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/gocardless/draupnir
go 1.17

require (
github.com/burntsushi/toml v0.3.0
github.com/BurntSushi/toml v0.3.1
github.com/coreos/go-iptables v0.6.0
github.com/getsentry/raven-go v0.2.1-0.20190619092523-5c24d5110e0e
github.com/google/jsonapi v0.0.0-20160922220230-925ebf213646
Expand Down
3 changes: 1 addition & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc h1:cAKDfWh5VpdgMhJosfJnn5/FoN2SRZ4p7fJNX58YPaU=
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf h1:qet1QNfXsQxTZqLG4oE62mJzwPIB8+Tee4RNCL9ulrY=
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
github.com/burntsushi/toml v0.3.0 h1:7xSK9KkjYhUFUrcGkb57k/zXyeo8yshRmbFS2P1mQT0=
github.com/burntsushi/toml v0.3.0/go.mod h1:tCq67G3LEDB9hykA6+KWl2FPEy0nPcvE8TTBhtOtdGs=
github.com/certifi/gocertifi v0.0.0-20171105132559-a4ab0227d360 h1:mncIYTnditUQddapTftLSTGusm7hjdEWvKarvLlVi2M=
github.com/certifi/gocertifi v0.0.0-20171105132559-a4ab0227d360/go.mod h1:GJKEexRPVJrBSOjoqN5VNOIKJ5Q3RViH6eu3puDRwx4=
github.com/coreos/go-iptables v0.6.0 h1:is9qnZMPYjLd8LYqmm/qlE+wwEgJIkTYdhV3rfZo4jk=
Expand Down
2 changes: 1 addition & 1 deletion pkg/client/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"os"

"github.com/burntsushi/toml"
"github.com/BurntSushi/toml"
"golang.org/x/oauth2"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/server/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"reflect"

"github.com/burntsushi/toml"
"github.com/BurntSushi/toml"
"github.com/pkg/errors"
)

Expand Down

0 comments on commit 6bddd3f

Please sign in to comment.