v14 is no longer supported

This commit is contained in:
Nemo 2022-03-29 17:19:18 +05:30
parent d53399dd79
commit 0f397fa8e0
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
const VERSION_EXCLUDE = ['nightly', 'beta', 'alpha'];
// The latest four stable major versions are currently supported
// till May 2022, after which only 3 major versions will be supported
const SUPPORTED_MAJOR_VERSIONS = [14, 15, 16, 17];
const SUPPORTED_MAJOR_VERSIONS = [15, 16, 17, 18];
// Command to fetch the list of versions from upstream
const FETCH_VERSIONS_COMMAND = "git ls-remote -q --tags https://github.com/electron/electron.git |grep -v '\^{}' |cut -f2 | sed -s 's/refs\/tags\///g' ";