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 Latest version is blocked to 0.* , as 1.9.* version is now available.
To Reproduce
- name: Setup Cloudformation Linter uses: scottbrenner/cfn-lint-action@v2 - name: Print the Cloud Formation Linter Version & run Linter. shell: bash run: | cfn-lint --version
output:
| cfn-lint | 0.87.10
it should install the latest version, as of today: 1.9.5 .
It works when it's specified :
- name: Setup Cloudformation Linter uses: scottbrenner/cfn-lint-action@v2 with: version: 1.* - name: Print the Cloud Formation Linter Version. shell: bash run: | cfn-lint --version
| cfn-lint | 1.9.5
Additional context Seems to be due to the default value (0.*) set in :
cfn-lint-action/dist/index.js
Line 84 in adb118b
The text was updated successfully, but these errors were encountered:
ScottBrenner
Successfully merging a pull request may close this issue.
Describe the bug
Latest version is blocked to 0.* , as 1.9.* version is now available.
To Reproduce
output:
it should install the latest version, as of today: 1.9.5 .
It works when it's specified :
output:
Additional context
Seems to be due to the default value (0.*) set in :
cfn-lint-action/dist/index.js
Line 84 in adb118b
The text was updated successfully, but these errors were encountered: