From 7d6d0cc87841a7d613032eb2978617f8bdf4e7c7 Mon Sep 17 00:00:00 2001 From: Dan Rios <36534747+riosengineer@users.noreply.github.com> Date: Wed, 3 Dec 2025 16:47:38 +0000 Subject: [PATCH 1/2] Update mega-linter.yml to disable JSON_PRETTIER linter --- .github/workflows/mega-linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mega-linter.yml b/.github/workflows/mega-linter.yml index bafe362..c86a227 100644 --- a/.github/workflows/mega-linter.yml +++ b/.github/workflows/mega-linter.yml @@ -49,7 +49,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # ADD YOUR CUSTOM ENV VARIABLES HERE OR DEFINE THEM IN A FILE .mega-linter.yml AT THE ROOT OF YOUR REPOSITORY DISABLE: COPYPASTE,SPELL # Uncomment to disable copy-paste and spell checks - DISABLE_LINTERS: YAML_V8R,YAML_YAMLLINT,YAML_PRETTIER,REPOSITORY_CHECKOV,POWERSHELL_POWERSHELL,ACTION_ACTIONLINT,REPOSITORY_GITLEAKS,REPOSITORY_GRYPE,REPOSITORY_KICS,REPOSITORY_TRIVY + DISABLE_LINTERS: YAML_V8R,YAML_YAMLLINT,YAML_PRETTIER,JSON_PRETTIER,REPOSITORY_CHECKOV,POWERSHELL_POWERSHELL,ACTION_ACTIONLINT,REPOSITORY_GITLEAKS,REPOSITORY_GRYPE,REPOSITORY_KICS,REPOSITORY_TRIVY # Upload MegaLinter artifacts - name: Archive production artifacts From 943f4ed32ddbf68a4a18723dde4cd88b8d4db41c Mon Sep 17 00:00:00 2001 From: Dan Rios <36534747+riosengineer@users.noreply.github.com> Date: Wed, 3 Dec 2025 16:50:22 +0000 Subject: [PATCH 2/2] Update README.md to reflect the correct Bicep version for @validate() decorator --- bicep-examples/validate/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bicep-examples/validate/README.md b/bicep-examples/validate/README.md index efef380..63880a9 100644 --- a/bicep-examples/validate/README.md +++ b/bicep-examples/validate/README.md @@ -4,7 +4,7 @@ The `@validate()` decorator in Azure Bicep allows you to add custom validation logic to your parameters. This enables you to enforce complex constraints that go beyond basic type checking, catching configuration errors at deployment time with clear error messages. -This feature was released in [Bicep v0.32](https://github.com/Azure/bicep/releases/tag/v0.32.4) as an experimental feature. +This feature was released in [Bicep v0.38.3]https://github.com/Azure/bicep/releases/tag/v0.38.3) as an experimental feature. ## 📃 Benefits of the Validate Decorator