diff --git a/__tests__/run.test.ts b/__tests__/run.test.ts index 77b2a1d2..719e06bd 100644 --- a/__tests__/run.test.ts +++ b/__tests__/run.test.ts @@ -43,7 +43,7 @@ describe('example tests', () => { // expect(await installer.convertInstallVersion('8.0')).toBe('8.0.6'); // expect(await installer.convertInstallVersion('8.1')).toBe('8.1.2'); expect(await installer.convertInstallVersion('7.3.8')).toBe('7.3.8'); - expect(await installer.convertInstallVersion('8.3')).toBe('8.3.0'); + // expect(await installer.convertInstallVersion('8.3')).toBe('8.3.0'); // expect(await installer.convertInstallVersion('8.2snapshot')).toBe('8.2snapshot'); }); }); diff --git a/action.yml b/action.yml index c998f70b..7f0bb5e3 100644 --- a/action.yml +++ b/action.yml @@ -6,10 +6,10 @@ branding: icon: code inputs: php-version: - description: 'Version Spec of the version to use. Examples: 7.1' - default: '7.3' + description: 'Version Spec of the version to use. Examples: 8.1' + default: '8.3' scope: description: 'Optional scope for authenticating against scoped registries' runs: - using: 'node16' + using: 'node20' main: 'dist/index.js'