Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): add setup-terraform step to upgrade workflows #185

Merged
merged 2 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions projenrc/upgrade-cdktf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,17 @@ export class UpgradeCDKTF {
name: "Checkout",
uses: "actions/checkout@v3",
},
{
name: "Setup Terraform",
uses: "hashicorp/setup-terraform",
with: {
terraform_wrapper: false,
},
},
{
name: "Setup Node.js",
uses: "actions/setup-node@v3",
},
{
name: "Install",
run: "yarn install",
Expand Down
7 changes: 7 additions & 0 deletions projenrc/upgrade-jsii-typescript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,13 @@ export class UpgradeJSIIAndTypeScript {
name: "Checkout",
uses: "actions/checkout@v3",
},
{
name: "Setup Terraform",
uses: "hashicorp/setup-terraform",
with: {
terraform_wrapper: false,
},
},
{
name: "Setup Node.js",
uses: "actions/setup-node@v3",
Expand Down
7 changes: 7 additions & 0 deletions projenrc/upgrade-projen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ export class UpgradeProjen {
name: "Checkout",
uses: "actions/checkout@v3",
},
{
name: "Setup Terraform",
uses: "hashicorp/setup-terraform",
with: {
terraform_wrapper: false,
},
},
{
name: "Setup Node.js",
uses: "actions/setup-node@v3",
Expand Down
Loading