We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Using -g flag to generate DOT model gives missing pydot pygraphviz ERROR, although installed
-g
To Reproduce
name: Lint CloudFormation Templates on: push: branches: - main jobs: cloudformation-linter: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 - name: Setup Cloud Formation Linter with Latest Version uses: scottbrenner/cfn-lint-action@v2 - name: Install pydot and pygraphviz run: | sudo apt-get install graphviz graphviz-dev pip install pygraphviz pip install pydot - name: Run Linter and generate DOT files run: | cfn-lint --version cfn-lint -g -t cloudformation/templates/*.yaml - name: Commit and push DOT files run: | git config --local user.email "[email protected]" git config --local user.name "GitHub Action" git add cloudformation/templates/*.dot git commit -m "Add generated DOT graph" || echo "No changes to commit" git push
Expected behavior Creates a file in the same directory as the template that models the template's resources in DOT format
Screenshots
GitHub Actions Runner configuration (please complete the following information):
The text was updated successfully, but these errors were encountered:
Seems related to aws-cloudformation/cfn-lint#1753, possibly #274 (comment) as well.
Sorry, something went wrong.
ScottBrenner
Successfully merging a pull request may close this issue.
Describe the bug
Using
-g
flag to generate DOT model gives missing pydot pygraphviz ERROR, although installedTo Reproduce
Expected behavior
Creates a file in the same directory as the template that models the template's resources in DOT format
Screenshots
GitHub Actions Runner configuration (please complete the following information):
The text was updated successfully, but these errors were encountered: