Skip to content

Commit

Permalink
Add node20 runtime support to google
Browse files Browse the repository at this point in the history
  • Loading branch information
Youssef Farhoun committed Jan 24, 2024
1 parent 6994ff4 commit c186b27
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export type AwsNodeMatcher = AwsNodeProviderRuntimeMatcher<12 | 14 | 16 | 18 | 2

export type AzureNodeMatcher = AzureNodeProviderRuntimeMatcher<12 | 14 | 16 | 18>;

export type GoogleNodeMatcher = GoogleNodeProviderRuntimeMatcher<12 | 14 | 16 | 18>;
export type GoogleNodeMatcher = GoogleNodeProviderRuntimeMatcher<12 | 14 | 16 | 18 | 20>;

export type ScalewayNodeMatcher = ScalewayNodeProviderRuntimeMatcher<12 | 14 | 16 | 18 | 20>;

Expand Down Expand Up @@ -266,6 +266,7 @@ const azureNodeMatcher: AzureNodeMatcher = {
};

const googleNodeMatcher: GoogleNodeMatcher = {
nodejs20: 'node20',
nodejs18: 'node18',
nodejs16: 'node16',
nodejs14: 'node14',
Expand Down

0 comments on commit c186b27

Please sign in to comment.