From cfab27c9ce58b56066b34c72714bf51d1033e993 Mon Sep 17 00:00:00 2001 From: Mark Phelps <209477+markphelps@users.noreply.github.com> Date: Tue, 12 Dec 2023 19:57:03 -0500 Subject: [PATCH] chore: Update github-actions.mdx --- tooling/github-actions.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tooling/github-actions.mdx b/tooling/github-actions.mdx index 3a38268..bafc2b0 100644 --- a/tooling/github-actions.mdx +++ b/tooling/github-actions.mdx @@ -7,7 +7,7 @@ description: How to use our GitHub Actions to automate your workflows. ![Flipt Validate Action](/images/tooling/validate-action.png) -The [flipt-validate action](https://github.com/flipt-io/validate-action) is used to validate your [features.yml](/configuration/storage#flag-state-configuration) files in a GitHub workflow. We recommend to use this action in your workflow to ensure that your Flipt data is syntactically and semantically valid before deploying when using [Git](https://www.flipt.io/docs/configuration/storage#git) or other [declarative backends](https://www.flipt.io/docs/configuration/storage#declarative). +The [flipt-validate action](https://github.com/flipt-io/validate-action) is used to validate your [features.yml](/configuration/storage#flag-state-configuration) files in a GitHub workflow. We recommend using this action in your workflow to ensure that your Flipt data is syntactically and semantically valid before deploying when using [Git](https://www.flipt.io/docs/configuration/storage#git) or other [declarative backends](https://www.flipt.io/docs/configuration/storage#declarative). It uses the [`flipt validate`](/cli/commands/validate) command under the hood to validate your data. If the data is invalid, the action will fail and provide a detailed error annotation at the source of the error. @@ -22,7 +22,7 @@ validate: # Checkout the target repository - uses: actions/checkout@v3 - - uses: flipt-io/validate-action@v0.1.0 + - uses: flipt-io/validate-action@v0.2.0 # with: # Optional, the token to use for GitHub API requests # github-token: ${{ secrets.GITHUB_TOKEN }}