Skip to content

Commit d1d4fd3

Browse files
authored
fix: Mark toolchain repo rule as reproducible (#544)
* fix: Mark toolchain repo rule as reproducible * chore: Update dependencies
1 parent 88e3e6d commit d1d4fd3

File tree

6 files changed

+473
-1792
lines changed

6 files changed

+473
-1792
lines changed

.github/workflows/bazel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
test:
13-
uses: bazel-contrib/.github/.github/workflows/bazel.yaml@v6
13+
uses: bazel-contrib/.github/.github/workflows/bazel.yaml@v7
1414
with:
1515
folders: '["bazel/test"]'
1616
exclude_windows: true

MODULE.bazel

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
"Bazel module definition, see https://bazel.build/external/overview#bzlmod"
2+
23
module(
34
name = "container_structure_test",
4-
compatibility_level = 1,
55
# Replaced dynamically when published
66
version = "0.0.0",
7+
compatibility_level = 1,
78
)
89

910
# To run jq
10-
bazel_dep(name = "aspect_bazel_lib", version = "1.28.0")
11-
bazel_dep(name = "bazel_skylib", version = "1.6.1")
12-
bazel_dep(name = "platforms", version = "0.0.9")
11+
bazel_dep(name = "aspect_bazel_lib", version = "2.22.5")
12+
bazel_dep(name = "bazel_skylib", version = "1.8.2")
13+
bazel_dep(name = "platforms", version = "1.0.0")
1314

1415
ext = use_extension("//:repositories.bzl", "extension")
1516
use_repo(
@@ -18,13 +19,13 @@ use_repo(
1819
# For testing only
1920
"structure_test_st_darwin_amd64",
2021
"structure_test_st_darwin_arm64",
22+
"structure_test_st_linux_amd64",
2123
"structure_test_st_linux_arm64",
2224
"structure_test_st_linux_s390x",
23-
"structure_test_st_linux_amd64",
2425
"structure_test_st_windows_amd64",
2526
)
2627

2728
register_toolchains("@structure_test_toolchains//:all")
2829

2930
# 0.5.4 is the first version with bzlmod support
30-
bazel_dep(name = "stardoc", version = "0.5.4", repo_name = "io_bazel_stardoc", dev_dependency = True)
31+
bazel_dep(name = "stardoc", version = "0.7.2", dev_dependency = True, repo_name = "io_bazel_stardoc")

0 commit comments

Comments
 (0)