From 22eb76e04eab02ce3ac5ff9c77605af1113844a5 Mon Sep 17 00:00:00 2001 From: Momo Kornher Date: Mon, 6 Nov 2023 12:51:41 +0000 Subject: [PATCH] chore: include @aws-cdk/service-spec-importers in service spec update (#27854) Fixes `@aws-cdk/service-spec-importers` being outdated ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- .github/workflows/spec-update.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/spec-update.yml b/.github/workflows/spec-update.yml index 880a106954e7b..e7bf5e35d3f8c 100644 --- a/.github/workflows/spec-update.yml +++ b/.github/workflows/spec-update.yml @@ -30,11 +30,11 @@ jobs: - name: Install ncu tool run: npm -g install lerna npm-check-updates - name: Run "ncu" for service spec packages - run: lerna exec --parallel ncu -- --upgrade --filter='@aws-cdk/aws-service-spec,@aws-cdk/service-spec-types' --target=latest + run: lerna exec --parallel ncu -- --upgrade --filter='@aws-cdk/aws-service-spec,@aws-cdk/service-spec-importers,@aws-cdk/service-spec-types' --target=latest # This will ensure the current lockfile is up-to-date with the dependency specifications - name: Install latest version & update lockfile - run: yarn upgrade @aws-cdk/aws-service-spec @aws-cdk/service-spec-types + run: yarn upgrade @aws-cdk/aws-service-spec @aws-cdk/service-spec-importers @aws-cdk/service-spec-types # Build @aws-cdk/spec2cdk and run L1 gen script to generate base files for new modules - name: Build @aws-cdk/spec2cdk