Skip to content

Commit

Permalink
Update Kubernetes versions (#352)
Browse files Browse the repository at this point in the history
Co-authored-by: jacobtomlinson <[email protected]>
Co-authored-by: Jacob Tomlinson <[email protected]>
  • Loading branch information
3 people authored Apr 19, 2024
1 parent 3183d8b commit af26e94
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ci/update-kubernetes.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ def get_versions():
for version in data:
try:
version["latest_kind_container"] = [
x["name"] for x in container_tags if version["cycle"] in x["name"]
x["name"]
for x in container_tags
if version["cycle"] in x["name"] and "alpha" not in x["name"]
][0][1:]
except IndexError:
version["latest_kind_container"] = None
Expand Down

0 comments on commit af26e94

Please sign in to comment.