Skip to content

Commit

Permalink
chore: add node18 (#19)
Browse files Browse the repository at this point in the history
Co-authored-by: Ran Isenberg <[email protected]>
  • Loading branch information
ran-isenberg and Ran Isenberg authored Aug 17, 2023
1 parent 26d789d commit e4c91b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
with:
python-version: "3.11"
- name: Set up Node
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
uses: actions/setup-node@bea5baf987ba7aa777a8a0b4ace377a21c45c381 # v3.8.0
with:
node-version: "16"
node-version: "18"
- name: Install dependencies
run: |
pip install --upgrade pip pre-commit poetry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class DynamicConfiguration(BaseModel):
CONFIGURATION_MAX_AGE_MINUTES: PositiveInt


class MyHandlerEnvVars(Observability, DynamicConfiguration):
class MyHandlerEnvVars(Observability, DynamicConfiguration, Idempotency):
REST_API: HttpUrl
ROLE_ARN: Annotated[str, Field(min_length=20, max_length=2048)]
TABLE_NAME: Annotated[str, Field(min_length=1)]

0 comments on commit e4c91b4

Please sign in to comment.