Skip to content

Commit

Permalink
Bump Node to 18.x, acknowledge CDK v1 EOS notice
Browse files Browse the repository at this point in the history
  • Loading branch information
chuckwondo committed Oct 19, 2023
1 parent 4722773 commit a62098e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
19 changes: 18 additions & 1 deletion .github/workflows/mcp_dev_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,24 @@ jobs:
jq -r <<<"$VARS_JSON" 'to_entries|map("\(.key)=\(.value)\u0000")[]'
)
- name: Deploy with tox
run: tox -v -e dev -r -- deploy --require-approval never
run: |
# NOTICES
#
# 19836 AWS CDK v1 End-of-Support June 1, 2023
#
# Overview: AWS CDK v1 is currently in maintenance mode. Support for AWS
# CDK v1 will end entirely on June 1, 2023. Migrate to AWS CDK
# v2 to continue to get the latest features and fixes!
#
# Affected versions: framework: 1.*, cli: 1.*
#
# More information at: https://github.com/aws/aws-cdk/issues/19836
#
#
# If you don’t want to see a notice anymore, use "cdk acknowledge <id>".
# For example, "cdk acknowledge 19836".
cdk acknowledge 19836
tox -v -e dev -r -- deploy --require-approval never
- name: Run DB setup
run: |
setupdb=$(aws cloudformation describe-stacks \
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ passenv =
HLS_*
AWS_*
commands =
nodeenv --node=16.20.2 -p
nodeenv --node=18.17.1 -p
npm install -g aws-cdk@1.203.0
cdk --version

Expand Down

0 comments on commit a62098e

Please sign in to comment.