Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.

Commit 2c5c2cc

Browse files
renovate[bot]alexeagle
authored andcommitted
Update dependency io_bazel_rules_go to v0.13.0 (#150)
* Update dependency io_bazel_rules_go to v0.13.0 * Update rules_typescript and rules_webtesting to work with latest rules_go * Update to Bazel 0.15
1 parent 579b9d3 commit 2c5c2cc

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# We use a docker image as the basis for our build, so that all the toolchains we use
55
# are already installed and the build can start running right away. It also guarantees
66
# the environment is portable and reproducible on your local machine.
7-
var_1: &docker_image angular/ngcontainer:0.3.2
7+
var_1: &docker_image angular/ngcontainer:0.3.3
88

99
# CircleCI lets us pick the key for storing one or more caches, to speed up subsequent builds.
1010
# We can use this to avoid re-fetching our dependencies from npm on every build.
@@ -13,7 +13,7 @@ var_1: &docker_image angular/ngcontainer:0.3.2
1313
# - the branch we are on, which really shouldn't be needed since the yarn lock file should be hermetic
1414
# - the docker image tag, working around an issue we saw where changing docker images causes permission
1515
# errors when restoring the cache, like when the user we run as changes
16-
var_2: &cache_key angular-{{ .Branch }}-{{ checksum "yarn.lock" }}-0.3.2
16+
var_2: &cache_key angular-{{ .Branch }}-{{ checksum "yarn.lock" }}-0.3.3
1717

1818
# Each job will inherit these defaults
1919
anchor_1: &job_defaults

WORKSPACE

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,19 @@ http_archive(
3535
# Runs the TypeScript compiler
3636
http_archive(
3737
name = "build_bazel_rules_typescript",
38-
url = "https://github.com/bazelbuild/rules_typescript/archive/0.15.0.zip",
39-
strip_prefix = "rules_typescript-0.15.0",
40-
sha256 = "1aa75917330b820cb239b3c10a936a10f0a46fe215063d4492dd76dc6e1616f4",
38+
url = "https://github.com/bazelbuild/rules_typescript/archive/0.15.3.zip",
39+
strip_prefix = "rules_typescript-0.15.3",
40+
sha256 = "a2b26ac3fc13036011196063db1bf7f1eae81334449201dc28087ebfa3708c99",
4141
)
4242

4343
# Used by the ts_web_test_suite rule to provision browsers
4444
http_archive(
4545
name = "io_bazel_rules_webtesting",
46-
url = "https://github.com/bazelbuild/rules_webtesting/archive/v0.2.0.zip",
47-
strip_prefix = "rules_webtesting-0.2.0",
48-
sha256 = "cecc12f07e95740750a40d38e8b14b76fefa1551bef9332cb432d564d693723c",
46+
# Use a commit SHA because we need a release
47+
# https://github.com/bazelbuild/rules_webtesting/issues/273
48+
url = "https://github.com/bazelbuild/rules_webtesting/archive/bbfc846d98dacb0fb40dd9173acfe4070e3e0f62.zip",
49+
strip_prefix = "rules_webtesting-bbfc846d98dacb0fb40dd9173acfe4070e3e0f62",
50+
sha256 = "a79e2d681b7c9ddc51e7974ddb385b9ee2b389cdc823dd3e78e18936337e4c5a",
4951
)
5052

5153
# Runs the Sass CSS preprocessor
@@ -59,8 +61,8 @@ http_archive(
5961
# Some of the TypeScript tooling is written in Go.
6062
http_archive(
6163
name = "io_bazel_rules_go",
62-
url = "https://github.com/bazelbuild/rules_go/releases/download/0.11.0/rules_go-0.11.0.tar.gz",
63-
sha256 = "f70c35a8c779bb92f7521ecb5a1c6604e9c3edd431e50b6376d7497abc8ad3c1",
64+
url = "https://github.com/bazelbuild/rules_go/releases/download/0.13.0/rules_go-0.13.0.tar.gz",
65+
sha256 = "ba79c532ac400cefd1859cbc8a9829346aa69e3b99482cd5a54432092cbc3933",
6466
)
6567

6668
####################################

0 commit comments

Comments
 (0)