Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit 0ad2bb9

Browse files
authored
Merge pull request #663 from aws-samples/fix/bump-cdk
fix: cdk 2.80
2 parents f56f50b + be9fece commit 0ad2bb9

24 files changed

+2378
-2255
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
with:
1414
ref: ${{ github.event.pull_request.head.ref }}
1515
repository: ${{ github.event.pull_request.head.repo.full_name }}
16-
- name: Setup Node 14
16+
- name: Setup Node 16
1717
uses: actions/setup-node@v2
1818
with:
19-
node-version: '14'
19+
node-version: '16'
2020
- name: Setup Java 11
2121
uses: actions/setup-java@v2
2222
with:

core/.gitattributes

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/.gitignore

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/.projen/deps.json

+19-32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/.projen/files.json

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/.projen/tasks.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/.projenrc.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ const glob = require('glob');
88

99
const { awscdk } = require('projen');
1010

11-
const CDK_VERSION = '2.72.1';
11+
const CDK_VERSION = '2.84.0';
12+
const CDK_CONSTRUCTS_VERSION = '10.2.55';
1213
const project = new awscdk.AwsCdkConstructLibrary({
1314
majorVersion: 2,
1415
authorName: 'Amazon Web Services',
@@ -25,7 +26,8 @@ const project = new awscdk.AwsCdkConstructLibrary({
2526
],
2627

2728
cdkVersion: CDK_VERSION,
28-
constructsVersion: '10.1.308',
29+
jsiiVersion: '~5.0.0',
30+
constructsVersion: CDK_CONSTRUCTS_VERSION,
2931
defaultReleaseBranch: 'main',
3032
license: 'MIT-0',
3133
name: 'aws-analytics-reference-architecture',

0 commit comments

Comments
 (0)