Skip to content

Commit

Permalink
node 18 (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmbronco authored Jun 6, 2024
1 parent d2d6949 commit 5c218da
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '20.x'
node-version: '18.x'
- name: Install deps
run: npm install -g npm@10 && npm ci
run: npm install -g npm@7 && npm ci
- name: Install CDK
run: npm install -g [email protected]
- name: Build Project
Expand Down
8 changes: 4 additions & 4 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export class BalancerPoolsAPI extends Stack {
SENTRY_DSN: SENTRY_DSN || '',
DEBUG: DEBUG || '',
},
runtime: Runtime.NODEJS_20_X,
runtime: Runtime.NODEJS_18_X,
timeout: Duration.seconds(15),
};

Expand Down Expand Up @@ -348,7 +348,7 @@ export class BalancerPoolsAPI extends Stack {
TENDERLY_PROJECT: TENDERLY_PROJECT || '',
TENDERLY_ACCESS_KEY: TENDERLY_ACCESS_KEY || '',
},
runtime: Runtime.NODEJS_20_X,
runtime: Runtime.NODEJS_18_X,
timeout: Duration.seconds(15),
}
);
Expand All @@ -363,7 +363,7 @@ export class BalancerPoolsAPI extends Stack {
TENDERLY_PROJECT: TENDERLY_PROJECT || '',
TENDERLY_ACCESS_KEY: TENDERLY_ACCESS_KEY || '',
},
runtime: Runtime.NODEJS_20_X,
runtime: Runtime.NODEJS_18_X,
timeout: Duration.seconds(15),
}
);
Expand All @@ -374,7 +374,7 @@ export class BalancerPoolsAPI extends Stack {
HYPERNATIVE_EMAIL: HYPERNATIVE_EMAIL || '',
HYPERNATIVE_PASSWORD: HYPERNATIVE_PASSWORD || '',
},
runtime: Runtime.NODEJS_20_X,
runtime: Runtime.NODEJS_18_X,
timeout: Duration.seconds(15),
});

Expand Down

0 comments on commit 5c218da

Please sign in to comment.