allero icon indicating copy to clipboard operation
allero copied to clipboard

[New Rule] Prevent usage of python without specifying a version

Open OriYosef opened this issue 3 years ago • 0 comments

It is recommended to specify a python version to prevent potential breaking changes due to patch updates. You should specify the exact major and minor versions. patch version is optional.

Bad practice:

steps:
- uses: actions/setup-python@v4
- run: python my_script.py

Recommended usage:

steps:
- uses: actions/setup-python@v4
  with:
    python-version: '3.7.5' 
- run: python my_script.py

OriYosef avatar Aug 30 '22 15:08 OriYosef