diff --git a/.github/workflows/mcp_dev_deployment.yml b/.github/workflows/mcp_dev_deployment.yml index cf23e23..1fc2c8a 100644 --- a/.github/workflows/mcp_dev_deployment.yml +++ b/.github/workflows/mcp_dev_deployment.yml @@ -71,24 +71,7 @@ jobs: jq -r <<<"$VARS_JSON" 'to_entries|map("\(.key)=\(.value)\u0000")[]' ) - name: Deploy with tox - 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 ". - # For example, "cdk acknowledge 19836". - cdk acknowledge 19836 - tox -v -e dev -r -- deploy --require-approval never + run: tox -v -e dev -r -- deploy --require-approval never - name: Run DB setup run: | setupdb=$(aws cloudformation describe-stacks \ diff --git a/tox.ini b/tox.ini index 8b75a21..b113eac 100644 --- a/tox.ini +++ b/tox.ini @@ -19,6 +19,22 @@ passenv = commands = nodeenv --node=18.17.1 -p npm install -g aws-cdk@1.203.0 + # 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 ". + # For example, "cdk acknowledge 19836". + cdk acknowledge 19836 cdk --version [testenv:dev]