dev - #12
Conversation
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (2)
🚧 Files skipped from review as they are similar to previous changes (1)
📝 WalkthroughWalkthroughThis PR bumps multiple dependency versions: Tailwind catalog and UI plugin, motion and ChangesDependency Version Updates
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 2
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@infra/aws/main/main.tf`:
- Line 2: The Terraform required_version constraint in the config (the line
required_version = "~> 1.15") is newer than the pipeline's Terraform (1.14.3);
update your CI workflow to install/use Terraform 1.15.x (or a compatible 1.15
patch) — e.g., set TF_VERSION to '1.15.0' in the GitHub Actions env or configure
the setup action (hashicorp/setup-terraform) to terraform_version: '~> 1.15' so
pipeline Terraform matches the required_version constraint.
In `@infra/aws/static/versions.tf`:
- Line 2: The pipeline Terraform version must match the module constraint
required_version = "~> 1.15"; update the static infra GitHub Actions workflow to
use Terraform 1.15.x (set TF_VERSION to 1.15.0 or later) or change the setup
step (hashicorp/setup-terraform@v3) to terraform_version: '~> 1.15' so the
runner uses a 1.15.x binary and Terraform init no longer fails.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro Plus
Run ID: ed165095-c7b8-4401-a095-5264c6039c01
⛔ Files ignored due to path filters (1)
pnpm-lock.yamlis excluded by!**/pnpm-lock.yaml
📒 Files selected for processing (8)
apps/static/package.jsoninfra/aws/main/.terraform.lock.hclinfra/aws/main/main.tfinfra/aws/static/.terraform.lock.hclinfra/aws/static/versions.tfpackage.jsonpackages/ui/package.jsonpnpm-workspace.yaml
| @@ -1,15 +1,15 @@ | |||
| terraform { | |||
| required_version = "~> 1.12" | |||
| required_version = "~> 1.15" | |||
There was a problem hiding this comment.
Pipeline Terraform version must be updated to match required_version constraint.
The pipeline is using Terraform 1.14.3, but this configuration now requires ~> 1.15 (meaning >= 1.15.0 and < 1.16.0). This is causing init failures and blocking all infrastructure deployments.
🔧 Required pipeline configuration update
Update the GitHub Actions workflow file(s) to use Terraform 1.15.x or later:
env:
TF_VERSION: '1.15.0' # or latest 1.15.x patch versionOr if using a setup action:
- uses: hashicorp/setup-terraform@v3
with:
terraform_version: '~> 1.15'🧰 Tools
🪛 GitHub Actions: Terraform - Main Infrastructure / 1_Terraform Plan - Main.txt
[error] 2-2: Terraform init failed: Unsupported Terraform Core version. required_version = "~> 1.15" does not support TF_VERSION 1.14.3.
🪛 GitHub Actions: Terraform - Main Infrastructure / Terraform Plan - Main
[error] 2-2: Terraform init failed: Unsupported Terraform Core version. Required 'required_version = "~> 1.15"' but pipeline used TF_VERSION 1.14.3.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@infra/aws/main/main.tf` at line 2, The Terraform required_version constraint
in the config (the line required_version = "~> 1.15") is newer than the
pipeline's Terraform (1.14.3); update your CI workflow to install/use Terraform
1.15.x (or a compatible 1.15 patch) — e.g., set TF_VERSION to '1.15.0' in the
GitHub Actions env or configure the setup action (hashicorp/setup-terraform) to
terraform_version: '~> 1.15' so pipeline Terraform matches the required_version
constraint.
| @@ -1,10 +1,10 @@ | |||
| terraform { | |||
| required_version = "~> 1.12" | |||
| required_version = "~> 1.15" | |||
There was a problem hiding this comment.
Pipeline Terraform version must be updated to match required_version constraint.
The static infrastructure pipeline is also using Terraform 1.14.3, but this configuration now requires ~> 1.15. This is causing the same init failure as the main infrastructure stack.
🔧 Required pipeline configuration update
Update the GitHub Actions workflow file for the static infrastructure to use Terraform 1.15.x or later:
env:
TF_VERSION: '1.15.0' # or latest 1.15.x patch versionOr if using a setup action:
- uses: hashicorp/setup-terraform@v3
with:
terraform_version: '~> 1.15'🧰 Tools
🪛 GitHub Actions: Terraform - AWS Static App Infrastructure / 1_Terraform Plan - Main.txt
[error] 2-2: Terraform init failed due to Unsupported Terraform Core version. versions.tf requires required_version = "~> 1.15" but TF_VERSION is 1.14.3.
🪛 GitHub Actions: Terraform - AWS Static App Infrastructure / Terraform Plan - Main
[error] 2-2: Terraform init failed: Unsupported Terraform Core version. versions.tf specifies required_version = "~> 1.15" but pipeline is using TF_VERSION 1.14.3.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@infra/aws/static/versions.tf` at line 2, The pipeline Terraform version must
match the module constraint required_version = "~> 1.15"; update the static
infra GitHub Actions workflow to use Terraform 1.15.x (set TF_VERSION to 1.15.0
or later) or change the setup step (hashicorp/setup-terraform@v3) to
terraform_version: '~> 1.15' so the runner uses a 1.15.x binary and Terraform
init no longer fails.
Summary by CodeRabbit
@tailwindcss/postcss, tailwind-merge, tailwind catalog,@types/node, and oxfmt.