We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 955f859 commit 26f16a5Copy full SHA for 26f16a5
.github/workflows/update-supported-enterprise-server-versions/update.py
@@ -37,7 +37,8 @@ def main():
37
end_of_life_date = datetime.date.fromisoformat(release_data["end"])
38
# The GHES version is not actually end of life until the end of the day specified by
39
# `end_of_life_date`. Wait an extra week to be safe.
40
- if end_of_life_date > datetime.date.today() - datetime.timedelta(weeks=1):
+ is_end_of_life = datetime.date.today() > end_of_life_date + datetime.timedelta(weeks=1)
41
+ if not is_end_of_life:
42
oldest_supported_release = release_version
43
44
api_compatibility_data = {
0 commit comments