Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump nodejs #256

Merged
merged 2 commits into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion __tests__/run.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});
});
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'