Skip to content

Commit

Permalink
Upgrade dependencies (#56)
Browse files Browse the repository at this point in the history
Upgrade rules_bazel_integration_test to 0.7.0
Upgrade bazel-skylib to 1.2.1
Upgrade bazel-starlib to 0.7.0
  • Loading branch information
cgrindel authored May 5, 2022
1 parent b161176 commit f7c6f29
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
name = "contrib_rules_bazel_integration_test",
sha256 = "ab9bbf776b5874f8a02f639fec2fbb3e3eefa4403cf861ae00d7c7e4d757f9ff",
strip_prefix = "rules_bazel_integration_test-0.6.2",
sha256 = "24e5e8f388bec2da0975cfda6073ed0174a4f62cb874b5dc8037c98faa6acdfd",
strip_prefix = "rules_bazel_integration_test-0.7.0",
urls = [
"http://github.com/bazel-contrib/rules_bazel_integration_test/archive/v0.6.2.tar.gz",
"http://github.com/bazel-contrib/rules_bazel_integration_test/archive/v0.7.0.tar.gz",
],
)

Expand Down
12 changes: 6 additions & 6 deletions swiftformat/deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ def swiftformat_rules_dependencies():
http_archive,
name = "bazel_skylib",
urls = [
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.1.1.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.1.1.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
],
sha256 = "c6966ec828da198c5d9adbaa94c05e3a1c7f21bd012a0b29ba8ddbccb2c93b0d",
sha256 = "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728",
)

maybe(
http_archive,
name = "cgrindel_bazel_starlib",
sha256 = "8ac3e45dc237121283d70506497ec39feb5092af9a57bfe34f7abf4a6bd2ebaa",
strip_prefix = "bazel-starlib-0.6.0",
sha256 = "f61c83d78754ce3abe562fbac54b3a055e4c80c209f5de7938f1773312fe2cfe",
strip_prefix = "bazel-starlib-0.7.0",
urls = [
"http://github.com/cgrindel/bazel-starlib/archive/v0.6.0.tar.gz",
"http://github.com/cgrindel/bazel-starlib/archive/v0.7.0.tar.gz",
],
)

Expand Down

0 comments on commit f7c6f29

Please sign in to comment.