Skip to content

Commit

Permalink
chore(deps): upgrade dependencies (#67)
Browse files Browse the repository at this point in the history
Upgrades project dependencies. See details in [workflow run].

[Workflow Run]:
https://github.com/cdktf/construct-projen-template/actions/runs/10551293832

------

*Automatically created by projen via the "upgrade-main" workflow*

---------

Signed-off-by: team-tf-cdk <github-team-tf-cdk@hashicorp.com>
Co-authored-by: Nara Kasbergen <nara.kasbergen@gmail.com>
  • Loading branch information
team-tf-cdk and xiehan authored Aug 28, 2024
1 parent 7a0a775 commit c691e31
Show file tree
Hide file tree
Showing 12 changed files with 163 additions and 128 deletions.
1 change: 1 addition & 0 deletions .gitattributes

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

3 changes: 2 additions & 1 deletion .github/workflows/auto-approve.yml

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

3 changes: 2 additions & 1 deletion .github/workflows/automerge.yml

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

3 changes: 2 additions & 1 deletion .github/workflows/upgrade-cdktf.yml

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

3 changes: 2 additions & 1 deletion .github/workflows/upgrade-node.yml

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

2 changes: 1 addition & 1 deletion .projen/tasks.json

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

4 changes: 2 additions & 2 deletions package.json

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

5 changes: 3 additions & 2 deletions projenrc/auto-approve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ export class AutoApprove {
},
});

(workflow.concurrency as any) =
"${{ github.workflow }}-${{ github.head_ref }}";
(workflow.concurrency as any) = {
group: "${{ github.workflow }}-${{ github.ref }}",
};

const maintainerStatuses = `fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]')`;
workflow.addJobs({
Expand Down
5 changes: 3 additions & 2 deletions projenrc/automerge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ export class Automerge {
},
});

(workflow.concurrency as any) =
"${{ github.workflow }}-${{ github.head_ref }}";
(workflow.concurrency as any) = {
group: "${{ github.workflow }}-${{ github.ref }}",
};

const maintainerStatuses = `fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]')`;
workflow.addJobs({
Expand Down
4 changes: 3 additions & 1 deletion projenrc/upgrade-cdktf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ export class UpgradeCDKTF {
workflowDispatch: {}, // allow manual triggering
});

(workflow.concurrency as any) = "${{ github.workflow }}-${{ github.ref }}";
(workflow.concurrency as any) = {
group: "${{ github.workflow }}-${{ github.ref }}",
};

workflow.addJobs({
upgrade: {
Expand Down
4 changes: 3 additions & 1 deletion projenrc/upgrade-node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ export class UpgradeNode {
workflowDispatch: {}, // allow manual triggering
});

(workflow.concurrency as any) = "${{ github.workflow }}-${{ github.ref }}";
(workflow.concurrency as any) = {
group: "${{ github.workflow }}-${{ github.ref }}",
};

workflow.addJobs({
upgrade: {
Expand Down
254 changes: 139 additions & 115 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit c691e31

Please sign in to comment.