Skip to content

Commit

Permalink
chore: Remove Node.js 16 support
Browse files Browse the repository at this point in the history
  • Loading branch information
lym953 committed Jan 21, 2025
1 parent 353f1f2 commit 1b80ba6
Show file tree
Hide file tree
Showing 10 changed files with 119 additions and 119 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .gitattributes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Set up Node 16
- name: Set up Node 18
uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18

- name: Cache Node modules
id: cache-node-modules
uses: actions/cache@v2
with:
path: '**/node_modules'
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}-${{ matrix.working-dir }}

- name: Install dependencies
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
node-version: [16, 18, 20]
node-version: [18, 20]

steps:
- name: Checkout
Expand All @@ -63,9 +63,9 @@ jobs:
id: cache-node-modules
uses: actions/cache@v2
with:
path: '**/node_modules'
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}-${{ matrix.working-dir }}

- name: Install common dependencies
working-directory: ./
run: yarn install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Set up Node 16
- name: Set up Node 18
uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18

- name: Cache Node modules
id: cache-node-modules
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/upgrade.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion .projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const project = new awscdk.AwsCdkConstructLibrary({
repositoryUrl: "https://github.com/DataDog/datadog-cdk-constructs",

packageManager: javascript.NodePackageManager.YARN_CLASSIC,
minNodeVersion: "14.15.0",
minNodeVersion: "18.0.0",

jsiiFqn: "projen.AwsCdkConstructLibrary",
defaultReleaseBranch: "main",
Expand Down
16 changes: 10 additions & 6 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1b80ba6

Please sign in to comment.