From 68940268baf822d1403dcae81ac6884af4c25cf3 Mon Sep 17 00:00:00 2001 From: team-tf-cdk <84392119+team-tf-cdk@users.noreply.github.com> Date: Thu, 1 Jun 2023 12:49:36 +0200 Subject: [PATCH] chore(deps): Updated (#1053) Triggered by https://github.com/cdktf/cdktf-repository-manager/actions/runs/5143335075 --- .copywrite.hcl | 24 +++++++++ .gitattributes | 3 +- .../workflows/auto-close-community-issues.yml | 2 +- .github/workflows/build.yml | 46 +++++++++-------- .github/workflows/lock.yml | 2 +- .github/workflows/next-cdktf-version-pr.yml | 4 +- .github/workflows/provider-upgrade.yml | 4 +- .github/workflows/release.yml | 50 +++++++++---------- .github/workflows/stale.yml | 2 +- .github/workflows/upgrade-main.yml | 12 ++--- .gitignore | 3 +- .projen/files.json | 1 + .projen/tasks.json | 4 +- API.md | 6 --- package.json | 2 +- scripts/check-for-upgrades.js | 4 ++ scripts/should-release.js | 4 ++ src/data-archive-file/index.ts | 5 ++ src/file/index.ts | 5 ++ src/index.ts | 5 ++ src/provider/index.ts | 5 ++ yarn.lock | 14 +++--- 22 files changed, 131 insertions(+), 76 deletions(-) create mode 100644 .copywrite.hcl delete mode 100644 API.md diff --git a/.copywrite.hcl b/.copywrite.hcl new file mode 100644 index 00000000..dd6e0713 --- /dev/null +++ b/.copywrite.hcl @@ -0,0 +1,24 @@ +schema_version = 1 + +project { + license = "MPL-2.0" + copyright_year = 2021 + + # (OPTIONAL) A list of globs that should not have copyright/license headers. + # Supports doublestar glob patterns for more flexibility in defining which + # files or folders should be ignored + header_ignore = [ + "**/node_modules/**", + "lib/**", + "dist/**", + "logs/**", + "build/**", + ".gen/**", + ".github/ISSUE_TEMPLATE/**", + ".terraform/**", + "docs/**", + "API.md", + ".mergify.yml", + "scripts/*.js" + ] +} diff --git a/.gitattributes b/.gitattributes index a33d59bb..5c03f533 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,6 @@ # ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen". +/.copywrite.hcl linguist-generated /.gitattributes linguist-generated /.github/CODEOWNERS linguist-generated /.github/ISSUE_TEMPLATE/config.yml linguist-generated @@ -22,8 +23,8 @@ /.projen/deps.json linguist-generated /.projen/files.json linguist-generated /.projen/tasks.json linguist-generated -/API.md linguist-generated /cdktf.json linguist-generated +/docs/*.md linguist-generated /LICENSE linguist-generated /package.json linguist-generated /README.md linguist-generated diff --git a/.github/workflows/auto-close-community-issues.yml b/.github/workflows/auto-close-community-issues.yml index 156a9a37..c7f0434e 100644 --- a/.github/workflows/auto-close-community-issues.yml +++ b/.github/workflows/auto-close-community-issues.yml @@ -14,7 +14,7 @@ jobs: if: github.event.issue.author_association != 'OWNER' && github.event.issue.author_association != 'MEMBER' && github.event.issue.author_association != 'COLLABORATOR' steps: - name: Auto-close issues by non-collaborators - uses: peter-evans/close-issue@v2 + uses: peter-evans/close-issue@276d7966e389d888f011539a86c8920025ea0626 with: issue-number: ${{ github.event.issue.number }} comment: Hi there! 👋 We appreciate your interest, but this is probably not the right place. All the code in this repository is auto-generated using [cdktf-provider-project](https://github.com/cdktf/cdktf-provider-project) and [cdktf-repository-manager](https://github.com/cdktf/cdktf-repository-manager) from the source [Terraform provider](https://github.com/terraform-providers/terraform-provider-archive). If there are problems, they should be addressed in one of those 3 repositories, not here, as any changes here will just get overwritten the next time there is an update upstream. Please open a new issue or PR in one of those repos. In the meantime, I'll auto-close this. Thanks! diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f5d4f0fe..397e7599 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,13 +15,13 @@ jobs: CI: "true" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} fetch-depth: 0 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c with: node-version: 16.14.0 - name: Install dependencies @@ -32,6 +32,12 @@ jobs: run: npx projen build - name: Revert package.json version bump run: git checkout package.json + - name: Setup Copywrite tool + uses: hashicorp/setup-copywrite@3ace06ad72e6ec679ea8572457b17dbc3960b8ce + with: + token: ${{ secrets.GITHUB_TOKEN }} + - name: Add headers using Copywrite tool + run: copywrite headers - name: Find mutations id: self_mutation run: |- @@ -39,7 +45,7 @@ jobs: git diff --staged --patch --exit-code > .repo.patch || echo "self_mutation_happened=true" >> $GITHUB_OUTPUT - name: Upload patch if: steps.self_mutation.outputs.self_mutation_happened - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce with: name: .repo.patch path: .repo.patch @@ -53,7 +59,7 @@ jobs: run: cd dist && getfacl -R . > permissions-backup.acl continue-on-error: true - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce with: name: build-artifact path: dist @@ -65,13 +71,13 @@ jobs: if: always() && needs.build.outputs.self_mutation_happened && !(github.event.pull_request.head.repo.full_name != github.repository) steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab with: token: ${{ secrets.PROJEN_GITHUB_TOKEN }} ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} - name: Download patch - uses: actions/download-artifact@v3 + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: .repo.patch path: ${{ runner.temp }} @@ -94,11 +100,11 @@ jobs: permissions: {} if: "! needs.build.outputs.self_mutation_happened" steps: - - uses: actions/setup-node@v3 + - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c with: node-version: 16.14.0 - name: Download build artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: build-artifact path: dist @@ -119,15 +125,15 @@ jobs: permissions: {} if: "! needs.build.outputs.self_mutation_happened" steps: - - uses: actions/setup-java@v3 + - uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 with: distribution: temurin java-version: 11.x - - uses: actions/setup-node@v3 + - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c with: node-version: 16.14.0 - name: Download build artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: build-artifact path: dist @@ -148,14 +154,14 @@ jobs: permissions: {} if: "! needs.build.outputs.self_mutation_happened" steps: - - uses: actions/setup-node@v3 + - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c with: node-version: 16.14.0 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 with: python-version: 3.x - name: Download build artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: build-artifact path: dist @@ -176,14 +182,14 @@ jobs: permissions: {} if: "! needs.build.outputs.self_mutation_happened" steps: - - uses: actions/setup-node@v3 + - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c with: node-version: 16.14.0 - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a with: dotnet-version: 3.x - name: Download build artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: build-artifact path: dist @@ -204,14 +210,14 @@ jobs: permissions: {} if: "! needs.build.outputs.self_mutation_happened" steps: - - uses: actions/setup-node@v3 + - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c with: node-version: 16.14.0 - - uses: actions/setup-go@v3 + - uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 with: go-version: ^1.16.0 - name: Download build artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: build-artifact path: dist diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 0598453a..7d2edba7 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -11,7 +11,7 @@ jobs: pull-requests: write issues: write steps: - - uses: dessant/lock-threads@v4.0.0 + - uses: dessant/lock-threads@c1b35aecc5cdb1a34539d14196df55838bb2f836 with: issue-comment: I'm going to lock this issue because it has been closed for at least 7 days. This helps our maintainers find and focus on the active issues. If you've found a problem that seems similar to this, please [open a new issue](https://github.com/cdktf/cdktf-provider-project/issues/new) so we can investigate further. issue-inactive-days: 7 diff --git a/.github/workflows/next-cdktf-version-pr.yml b/.github/workflows/next-cdktf-version-pr.yml index 182ea61e..9de0ef83 100644 --- a/.github/workflows/next-cdktf-version-pr.yml +++ b/.github/workflows/next-cdktf-version-pr.yml @@ -14,7 +14,7 @@ jobs: CHECKPOINT_DISABLE: "1" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -40,7 +40,7 @@ jobs: - name: Regenerate bindings run: yarn run fetch && yarn run compile && yarn run docgen - name: Create PR - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 with: token: ${{ secrets.GITHUB_TOKEN }} branch: cdktf-next-pr diff --git a/.github/workflows/provider-upgrade.yml b/.github/workflows/provider-upgrade.yml index 53460dd0..165fc005 100644 --- a/.github/workflows/provider-upgrade.yml +++ b/.github/workflows/provider-upgrade.yml @@ -15,7 +15,7 @@ jobs: statuses: write steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab - run: yarn install - id: check_version run: yarn check-if-new-provider-version @@ -38,7 +38,7 @@ jobs: run: yarn docgen - name: Create Pull Request if: ${{ steps.check_version.outputs.new_version == 'available' }} - uses: peter-evans/create-pull-request@v3 + uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 with: commit-message: "chore: upgrade provider from `${{ steps.current_version.outputs.value }}` to version `${{ steps.new_version.outputs.value }}`" branch: auto/provider-upgrade diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d45c728d..c900b10e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: CI: "true" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab with: fetch-depth: 0 - name: Set git config safe.directory @@ -27,7 +27,7 @@ jobs: git config user.name "github-actions" git config user.email "github-actions@github.com" - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c with: node-version: 16.14.0 - name: Install dependencies @@ -43,7 +43,7 @@ jobs: continue-on-error: true - name: Upload artifact if: ${{ steps.git_remote.outputs.latest_commit == github.sha }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce with: name: build-artifact path: dist @@ -56,11 +56,11 @@ jobs: issues: write if: needs.release.outputs.latest_commit == github.sha steps: - - uses: actions/setup-node@v3 + - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c with: node-version: 16.14.0 - name: Download build artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: build-artifact path: dist @@ -83,7 +83,7 @@ jobs: run: echo "VERSION=$(cat dist/version.txt)" >> $GITHUB_OUTPUT - name: Create Issue if: ${{ failure() }} - uses: imjohnbo/issue-bot@v3 + uses: imjohnbo/issue-bot@6924a99d928dc228f407d34eb3d0149eda73f2a7 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -99,11 +99,11 @@ jobs: issues: write if: needs.release.outputs.latest_commit == github.sha steps: - - uses: actions/setup-node@v3 + - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c with: node-version: 16.14.0 - name: Download build artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: build-artifact path: dist @@ -130,7 +130,7 @@ jobs: run: echo "VERSION=$(cat dist/version.txt)" >> $GITHUB_OUTPUT - name: Create Issue if: ${{ failure() }} - uses: imjohnbo/issue-bot@v3 + uses: imjohnbo/issue-bot@6924a99d928dc228f407d34eb3d0149eda73f2a7 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -146,15 +146,15 @@ jobs: issues: write if: needs.release.outputs.latest_commit == github.sha steps: - - uses: actions/setup-java@v3 + - uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 with: distribution: temurin java-version: 11.x - - uses: actions/setup-node@v3 + - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c with: node-version: 16.14.0 - name: Download build artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: build-artifact path: dist @@ -184,7 +184,7 @@ jobs: run: echo "VERSION=$(cat dist/version.txt)" >> $GITHUB_OUTPUT - name: Create Issue if: ${{ failure() }} - uses: imjohnbo/issue-bot@v3 + uses: imjohnbo/issue-bot@6924a99d928dc228f407d34eb3d0149eda73f2a7 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -200,14 +200,14 @@ jobs: issues: write if: needs.release.outputs.latest_commit == github.sha steps: - - uses: actions/setup-node@v3 + - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c with: node-version: 16.14.0 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 with: python-version: 3.x - name: Download build artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: build-artifact path: dist @@ -233,7 +233,7 @@ jobs: run: echo "VERSION=$(cat dist/version.txt)" >> $GITHUB_OUTPUT - name: Create Issue if: ${{ failure() }} - uses: imjohnbo/issue-bot@v3 + uses: imjohnbo/issue-bot@6924a99d928dc228f407d34eb3d0149eda73f2a7 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -249,14 +249,14 @@ jobs: issues: write if: needs.release.outputs.latest_commit == github.sha steps: - - uses: actions/setup-node@v3 + - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c with: node-version: 16.14.0 - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a with: dotnet-version: 3.x - name: Download build artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: build-artifact path: dist @@ -281,7 +281,7 @@ jobs: run: echo "VERSION=$(cat dist/version.txt)" >> $GITHUB_OUTPUT - name: Create Issue if: ${{ failure() }} - uses: imjohnbo/issue-bot@v3 + uses: imjohnbo/issue-bot@6924a99d928dc228f407d34eb3d0149eda73f2a7 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -297,14 +297,14 @@ jobs: issues: write if: needs.release.outputs.latest_commit == github.sha steps: - - uses: actions/setup-node@v3 + - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c with: node-version: 16.14.0 - - uses: actions/setup-go@v3 + - uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 with: go-version: ^1.16.0 - name: Download build artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: build-artifact path: dist @@ -331,7 +331,7 @@ jobs: run: echo "VERSION=$(cat dist/version.txt)" >> $GITHUB_OUTPUT - name: Create Issue if: ${{ failure() }} - uses: imjohnbo/issue-bot@v3 + uses: imjohnbo/issue-bot@6924a99d928dc228f407d34eb3d0149eda73f2a7 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index b0970625..85375e79 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,7 +12,7 @@ jobs: issues: write pull-requests: write steps: - - uses: actions/stale@v4 + - uses: actions/stale@a20b814fb01b71def3bd6f56e7494d667ddf28da with: days-before-stale: -1 days-before-close: -1 diff --git a/.github/workflows/upgrade-main.yml b/.github/workflows/upgrade-main.yml index 71e72a60..a56081a0 100644 --- a/.github/workflows/upgrade-main.yml +++ b/.github/workflows/upgrade-main.yml @@ -15,13 +15,13 @@ jobs: patch_created: ${{ steps.create_patch.outputs.patch_created }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab with: ref: main - name: Set git config safe.directory run: git config --global --add safe.directory $(pwd) - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c with: node-version: 16.14.0 - name: Install dependencies @@ -35,7 +35,7 @@ jobs: git diff --staged --patch --exit-code > .repo.patch || echo "patch_created=true" >> $GITHUB_OUTPUT - name: Upload patch if: steps.create_patch.outputs.patch_created - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce with: name: .repo.patch path: .repo.patch @@ -48,13 +48,13 @@ jobs: if: ${{ needs.upgrade.outputs.patch_created }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab with: ref: main - name: Set git config safe.directory run: git config --global --add safe.directory $(pwd) - name: Download patch - uses: actions/download-artifact@v3 + uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a with: name: .repo.patch path: ${{ runner.temp }} @@ -66,7 +66,7 @@ jobs: git config user.email "github-team-tf-cdk@hashicorp.com" - name: Create Pull Request id: create-pr - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 with: token: ${{ secrets.PROJEN_GITHUB_TOKEN }} commit-message: |- diff --git a/.gitignore b/.gitignore index 1ad733b3..20cc37fe 100644 --- a/.gitignore +++ b/.gitignore @@ -46,7 +46,6 @@ jspm_packages/ /dist/ .jsii tsconfig.json -!/API.md .gen .terraform package-lock.json @@ -63,3 +62,5 @@ package-lock.json !/.github/CODEOWNERS !/scripts/should-release.js API.md +!/docs/*.md +!/.copywrite.hcl diff --git a/.projen/files.json b/.projen/files.json index 36cc1d7e..e0f868e4 100644 --- a/.projen/files.json +++ b/.projen/files.json @@ -1,5 +1,6 @@ { "files": [ + ".copywrite.hcl", ".gitattributes", ".github/CODEOWNERS", ".github/ISSUE_TEMPLATE/config.yml", diff --git a/.projen/tasks.json b/.projen/tasks.json index 8940b4b7..1ca6cb71 100644 --- a/.projen/tasks.json +++ b/.projen/tasks.json @@ -110,10 +110,10 @@ }, "docgen": { "name": "docgen", - "description": "Generate API.md from .jsii manifest", + "description": "Generate documentation for the project", "steps": [ { - "exec": "rm -rf docs && mkdir docs && jsii-docgen --split-by-submodule -l typescript -l python -l java -l csharp -l go && mv *.*.md docs && cd docs && ls ./ | xargs sed -i '150000,$ d' $1" + "exec": "rm -rf docs && rm -f API.md && mkdir docs && jsii-docgen --split-by-submodule -l typescript -l python -l java -l csharp -l go && mv *.*.md docs && cd docs && ls ./ | xargs sed -i '150000,$ d' $1" } ] }, diff --git a/API.md b/API.md deleted file mode 100644 index 198f917d..00000000 --- a/API.md +++ /dev/null @@ -1,6 +0,0 @@ -# API Reference - - - - - diff --git a/package.json b/package.json index 159767bb..642da5e3 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "jsii-pacmak": "^1.81.0", "node-fetch": "cjs", "npm-check-updates": "^16", - "projen": "^0.71.66", + "projen": "^0.71.81", "standard-version": "^9", "typescript": "^4.9.5" }, diff --git a/scripts/check-for-upgrades.js b/scripts/check-for-upgrades.js index 65a08a97..8b30eb10 100644 --- a/scripts/check-for-upgrades.js +++ b/scripts/check-for-upgrades.js @@ -1,4 +1,8 @@ +/** + * Copyright (c) HashiCorp, Inc. + * SPDX-License-Identifier: MPL-2.0 + */ const fetch = require("node-fetch"); const semver = require("semver"); const actions = require("@actions/core"); diff --git a/scripts/should-release.js b/scripts/should-release.js index 7045f491..d29baf2d 100644 --- a/scripts/should-release.js +++ b/scripts/should-release.js @@ -1,4 +1,8 @@ +/** + * Copyright (c) HashiCorp, Inc. + * SPDX-License-Identifier: MPL-2.0 + */ // Note: This script is currently not handling pre-releases const execSync = require("child_process").execSync; diff --git a/src/data-archive-file/index.ts b/src/data-archive-file/index.ts index b9bbb96a..3b1563c6 100644 --- a/src/data-archive-file/index.ts +++ b/src/data-archive-file/index.ts @@ -1,3 +1,8 @@ +/** + * Copyright (c) HashiCorp, Inc. + * SPDX-License-Identifier: MPL-2.0 + */ + // https://registry.terraform.io/providers/hashicorp/archive/2.3.0/docs/data-sources/file // generated from terraform resource schema diff --git a/src/file/index.ts b/src/file/index.ts index 9a4b8e62..bfa1e878 100644 --- a/src/file/index.ts +++ b/src/file/index.ts @@ -1,3 +1,8 @@ +/** + * Copyright (c) HashiCorp, Inc. + * SPDX-License-Identifier: MPL-2.0 + */ + // https://registry.terraform.io/providers/hashicorp/archive/2.3.0/docs/resources/file // generated from terraform resource schema diff --git a/src/index.ts b/src/index.ts index 9cbdda53..7089d111 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,8 @@ +/** + * Copyright (c) HashiCorp, Inc. + * SPDX-License-Identifier: MPL-2.0 + */ + // generated by cdktf get export * as file from './file'; export * as dataArchiveFile from './data-archive-file'; diff --git a/src/provider/index.ts b/src/provider/index.ts index 55301510..658722c4 100644 --- a/src/provider/index.ts +++ b/src/provider/index.ts @@ -1,3 +1,8 @@ +/** + * Copyright (c) HashiCorp, Inc. + * SPDX-License-Identifier: MPL-2.0 + */ + // https://registry.terraform.io/providers/hashicorp/archive/2.3.0/docs // generated from terraform resource schema diff --git a/yarn.lock b/yarn.lock index f32beb62..2e99262d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -411,9 +411,9 @@ jsii-srcmak "^0.1.867" "@cdktf/provider-project@^0.2.95": - version "0.2.107" - resolved "https://registry.yarnpkg.com/@cdktf/provider-project/-/provider-project-0.2.107.tgz#8bd37886524389a660e42c4aa1f6061f230f0d5b" - integrity sha512-hu7Dv9l4Hzt++S78V/zY8CfkKSob7ttIP9oSVGfk6dMycILXmvdBq4Ftv/rt4Oxm/gYL8QpCiM+fWvnNYUAuXQ== + version "0.2.114" + resolved "https://registry.yarnpkg.com/@cdktf/provider-project/-/provider-project-0.2.114.tgz#1919e2acc121ba29af93a9198c7e04787913f298" + integrity sha512-0cxQtnvEeDoD2x21Qx5qbvrHNEPvRA+ATinCSjK7rp+24eIqcECPoSo0LLFUwR5P1oMxdgeAhxJyfRxfXwlwHw== dependencies: change-case "^4.1.2" fs-extra "^10.1.0" @@ -5093,10 +5093,10 @@ progress@^2.0.3: resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== -projen@^0.71.66: - version "0.71.66" - resolved "https://registry.yarnpkg.com/projen/-/projen-0.71.66.tgz#528a40f97bc5bdd2c3bda028070f69d6641985d5" - integrity sha512-nqdeBQ+6q8VtKwxVI771sZ+E2B8HCPJO1yIR6xMZUSApBASr8E3xIhrSBL+jUzLwyd2O94Jyq5Kr9XdjOK/n8g== +projen@^0.71.81: + version "0.71.81" + resolved "https://registry.yarnpkg.com/projen/-/projen-0.71.81.tgz#07912230d9712c3be5183d74751faf2a3c3ab8d7" + integrity sha512-0ZejRGWymGVGWgkNII8IZEyzRot+38g58e2DNk1ORBLwDnQYnYaOorf0Fcm452RTUOf/jnQTfCaHhhSQ41zrZg== dependencies: "@iarna/toml" "^2.2.5" case "^1.6.3"