github.com/actions-on-google/gactions@v3.2.0+incompatible/WORKSPACE (about) 1 load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") 2 3 http_archive( 4 name = "io_bazel_rules_go", 5 sha256 = "2697f6bc7c529ee5e6a2d9799870b9ec9eaeb3ee7d70ed50b87a2c2c97e13d9e", 6 urls = [ 7 "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.8/rules_go-v0.23.8.tar.gz", 8 "https://github.com/bazelbuild/rules_go/releases/download/v0.23.8/rules_go-v0.23.8.tar.gz", 9 ], 10 ) 11 12 load("@io_bazel_rules_go//extras:embed_data_deps.bzl", "go_embed_data_dependencies") 13 load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") 14 15 go_rules_dependencies() 16 17 go_register_toolchains() 18 19 go_embed_data_dependencies() 20 21 # Import Bazel Gazelle 22 http_archive( 23 name = "bazel_gazelle", 24 sha256 = "d4113967ab451dd4d2d767c3ca5f927fec4b30f3b2c6f8135a2033b9c05a5687", 25 urls = [ 26 "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.22.0/bazel-gazelle-v0.22.0.tar.gz", 27 "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.22.0/bazel-gazelle-v0.22.0.tar.gz", 28 ], 29 ) 30 31 load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository") 32 gazelle_dependencies() 33 34 go_repository( 35 name = "com_github_fatih_color", 36 commit = "daf2830f2741ebb735b21709a520c5f37d642d85", 37 importpath = "github.com/fatih/color", 38 ) 39 40 go_repository( 41 name = "com_github_golang_crypto", 42 commit = "5c72a883971a4325f8c62bf07b6d38c20ea47a6a", 43 importpath = "github.com/golang/crypto", 44 ) 45 46 go_repository( 47 name = "com_github_google_go_cmp", 48 commit = "d2fcc899bdc2d134b7c00e36137260db963e193c", 49 importpath = "github.com/google/go-cmp", 50 ) 51 52 go_repository( 53 name = "com_github_google_uuid", 54 commit = "0e4e31197428a347842d152773b4cace4645ca25", 55 importpath = "github.com/google/uuid", 56 ) 57 58 go_repository( 59 name = "com_github_inconshreveable_mousetrap", 60 commit = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75", 61 importpath = "github.com/inconshreveable/mousetrap" 62 ) 63 64 go_repository( 65 name = "com_github_pborman_uuid", 66 commit = "5b6091a6a160ee5ce12917b21ab96acec2a4fdc0", 67 importpath = "github.com/pborman/uuid", 68 ) 69 70 go_repository( 71 name = "com_github_protolambda_messagediff", 72 commit = "24215fdae608ad3b414abaa5b08c54386bf6c774", 73 importpath = "github.com/protolambda/messagediff", 74 ) 75 76 go_repository( 77 name = "com_github_spf13_cobra", 78 commit = "02a0d2fbc9e61d26f8e5979749f6030964a55a3e", 79 importpath = "github.com/spf13/cobra", 80 ) 81 82 go_repository( 83 name = "com_github_spf13_pflag", 84 commit = "81378bbcd8a1005f72b1e8d7579e5dd7b2d612ab", 85 importpath = "github.com/spf13/pflag", 86 ) 87 88 go_repository( 89 name = "com_google_cloud_go", 90 commit = "aa4dea45b99b7440f266638cbd3d8d9504e93bd7", 91 importpath = "cloud.google.com/go", 92 remote = "https://github.com/googleapis/google-cloud-go", 93 vcs = "git", 94 ) 95 96 go_repository( 97 name = "in_gopkg_yaml", 98 tag = "v2.3.0", 99 importpath = "gopkg.in/yaml.v2", 100 ) 101 102 go_repository( 103 name = "org_golang_google_appengine", 104 commit = "5539592", 105 importpath = "google.golang.org/appengine", 106 remote = "https://github.com/golang/appengine", 107 vcs = "git", 108 ) 109 110 go_repository( 111 name = "org_golang_x_net", 112 commit = "1e06a53dbb7e2ed46e91183f219db23c6943c532", # v0.0.0-20190108225652-1e06a53dbb7e as specified in oauth2, 113 importpath = "golang.org/x/net", 114 remote = "https://github.com/golang/net", 115 vcs = "git", 116 ) 117 118 go_repository( 119 name = "org_golang_x_oauth2", 120 commit = "bf48bf16ab8d622ce64ec6ce98d2c98f916b6303", 121 importpath = "golang.org/x/oauth2", 122 remote = "https://github.com/golang/oauth2", 123 vcs = "git", 124 ) 125 126 go_repository( 127 name = "org_golang_x_sys", 128 commit = "d9b008d0a637a6daa9d387171bc2d206f4de1691", 129 importpath = "golang.org/x/sys", 130 remote = "https://github.com/golang/sys", 131 vcs = "git", 132 )