Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ bazel_dep(name = "buildifier_prebuilt", version = "8.2.0.2", dev_dependency = Tr
bazel_dep(name = "stardoc", version = "0.8.0", dev_dependency = True, repo_name = "io_bazel_stardoc")

toolchain = use_extension("//apko:extensions.bzl", "apko")
toolchain.toolchain(apko_version = "v1.1.8")
toolchain.toolchain(apko_version = "v1.1.9")
use_repo(toolchain, "apko_toolchains")

register_toolchains("@apko_toolchains//:all")
Expand Down
12 changes: 6 additions & 6 deletions apko/private/versions.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
# Add new versions by running
# ./scripts/mirror_apko.sh
APKO_VERSIONS = {
"v1.1.8": {
"darwin_amd64": "sha256-g1PJKzwcKBrTV6+i2Q8lxAI9y5LxWR/JSzL19/LZzuo=",
"darwin_arm64": "sha256-RHqix2U6WgIdxReYWsvWf9YLpIVD6ivIOxN8hX/inXU=",
"linux_386": "sha256-6KkvJiBkslUteRxNsXXym5nobATqP6t3UdR3CEh4TB0=",
"linux_amd64": "sha256-cze9cPGZmhGRastjDqp+TkWp4r0jUlQAZl9WHZnn6Bk=",
"linux_arm64": "sha256-LHkNHtkoidlpLMrHU9z6tjflNYZb3aAog7LXO9okHFI=",
"v1.1.9": {
"darwin_amd64": "sha256-mBRbCBlSwV+Q7xjFqz3zr8y25o+vM+15qdAvca8YNyc=",
"darwin_arm64": "sha256-Pe3caHgtG4OCUMDo6SVIz69o8+DbzBh/QO0zyCnQRsU=",
"linux_386": "sha256-lEF9j1QAGMkU/tgMIg21ES8+fpzwb9ZBYeRFJMteifw=",
"linux_amd64": "sha256-OAfzrwzx8HzCxovY4VwT+iJ30AxF+sh8rTDV/lEN3eY=",
"linux_arm64": "sha256-UO53TcTJ800hE8exbfMTOWTk0b1f1mPuvXaHJ7ZoqlM=",
},
}
2 changes: 1 addition & 1 deletion apko/tests/versions_test.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ load("//apko/private:versions.bzl", "APKO_VERSIONS")

def _smoke_test_impl(ctx):
env = unittest.begin(ctx)
asserts.equals(env, "v1.1.8", APKO_VERSIONS.keys()[0])
asserts.equals(env, "v1.1.9", APKO_VERSIONS.keys()[0])
return unittest.end(env)

# The unittest library requires that we export the test cases as named test rules,
Expand Down