Skip to content

Commit

Permalink
test GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
moelasmar committed Nov 24, 2024
1 parent fc28b0f commit 6ed9616
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/lambda-runtime-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:

jobs:
update-lambda-tests:
if: github.repository == 'aws/aws-cdk'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 5 additions & 0 deletions packages/aws-cdk-lib/aws-lambda/lib/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,11 @@ export class Runtime {
*/
public static readonly NODEJS_22_X = new Runtime('nodejs22.x', RuntimeFamily.NODEJS, { supportsInlineCode: true });

/**
* The NodeJS 23.x runtime (nodejs23.x)
*/
public static readonly NODEJS_23_X = new Runtime('nodejs23.x', RuntimeFamily.NODEJS, { supportsInlineCode: true });

/**
* The Python 2.7 runtime (python2.7)
* @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest Python runtime.
Expand Down

0 comments on commit 6ed9616

Please sign in to comment.