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 e7cff66 commit 955f859Copy full SHA for 955f859
.github/workflows/update-supported-enterprise-server-versions/update.py
@@ -37,7 +37,7 @@ 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):
+ if end_of_life_date > datetime.date.today() - datetime.timedelta(weeks=1):
41
oldest_supported_release = release_version
42
43
api_compatibility_data = {
0 commit comments