Skip to content

Commit

Permalink
Update rules_pkg to get fix for timestamp warning (#18263)
Browse files Browse the repository at this point in the history
Without this, we get many warnings about deprecated timestamp methods in python.

Closes #18263

COPYBARA_INTEGRATE_REVIEW=#18263 from tempoz:tempoz-update-rules-pkg aabe3d8
PiperOrigin-RevId: 674661085
  • Loading branch information
tempoz authored and copybara-github committed Sep 14, 2024
1 parent a7d47b3 commit 48ff232
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ bazel_dep(

bazel_dep(
name = "rules_pkg",
version = "0.7.0",
version = "1.0.1",
)

bazel_dep(
Expand Down
6 changes: 3 additions & 3 deletions protobuf_deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,10 @@ def protobuf_deps():
http_archive(
name = "rules_pkg",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.7.0/rules_pkg-0.7.0.tar.gz",
"https://github.com/bazelbuild/rules_pkg/releases/download/0.7.0/rules_pkg-0.7.0.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/1.0.1/rules_pkg-1.0.1.tar.gz",
"https://github.com/bazelbuild/rules_pkg/releases/download/1.0.1/rules_pkg-1.0.1.tar.gz",
],
sha256 = "8a298e832762eda1830597d64fe7db58178aa84cd5926d76d5b744d6558941c2",
sha256 = "d20c951960ed77cb7b341c2a59488534e494d5ad1d30c4818c736d57772a9fef",
)

if not native.existing_rule("build_bazel_rules_apple"):
Expand Down

0 comments on commit 48ff232

Please sign in to comment.