Add highest alias as an alternative to latest

This commit is contained in:
Shivam Mathur 2024-01-01 01:26:40 +05:30
parent dc1a77b457
commit 43e870b2d0
No known key found for this signature in database
GPG Key ID: 3E13E4C8591ACC2A
4 changed files with 5 additions and 4 deletions

View File

@ -390,9 +390,9 @@ Disable coverage for these reasons:
#### `php-version` (optional)
- Specify the PHP version you want to set up.
- Accepts a `string`. For example `'8.0'`.
- Accepts `latest` to set up the latest stable PHP version.
- Accepts a `string`. For example `'8.3'`.
- Accepts `lowest` to set up the lowest supported PHP version.
- Accepts `highest` or `latest` to set up the latest stable PHP version.
- Accepts `nightly` to set up a nightly build from the master branch of PHP.
- Accepts the format `d.x`, where `d` is the major version. For example `5.x`, `7.x` and `8.x`.
- See [PHP support](#tada-php-support) for the supported PHP versions.

2
dist/index.js vendored
View File

@ -1156,7 +1156,7 @@ async function getManifestURL() {
exports.getManifestURL = getManifestURL;
async function parseVersion(version) {
switch (true) {
case /^(latest|lowest|nightly|\d+\.x)$/.test(version):
case /^(latest|lowest|highest|nightly|\d+\.x)$/.test(version):
return JSON.parse((await fetch.fetch(await getManifestURL()))['data'])[version];
default:
switch (true) {

View File

@ -1,5 +1,6 @@
{
"lowest": "8.1",
"highest": "8.3",
"latest": "8.3",
"nightly": "8.4",
"5.x": "5.6",

View File

@ -59,7 +59,7 @@ export async function getManifestURL(): Promise<string> {
*/
export async function parseVersion(version: string): Promise<string> {
switch (true) {
case /^(latest|lowest|nightly|\d+\.x)$/.test(version):
case /^(latest|lowest|highest|nightly|\d+\.x)$/.test(version):
return JSON.parse((await fetch.fetch(await getManifestURL()))['data'])[
version
];