We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5bc267 commit 0266e46Copy full SHA for 0266e46
1 file changed
…oding-standards-configuration/action.yml apply-configuration/action.yml.github/actions/apply-coding-standards-configuration/action.yml renamed to apply-configuration/action.yml
@@ -6,12 +6,14 @@ runs:
6
using: composite
7
steps:
8
- name: Install Python
9
+ id: cs-install-python
10
uses: actions/setup-python@v5
11
with:
12
python-version: 3.9
13
+ update-environment: false
14
- name: Install dependencies
15
shell: bash
- run: python -m pip install -r ${GITHUB_ACTION_PATH}/../../../scripts/configuration/requirements.txt
16
+ run: ${{ steps.cs-install-python.outputs.python-path }} -m pip install -r ${GITHUB_ACTION_PATH}/../scripts/configuration/requirements.txt
17
- name: Process files
18
- run: python ${GITHUB_ACTION_PATH}/../../../scripts/configuration/process_coding_standards_config.py
19
+ run: ${{ steps.cs-install-python.outputs.python-path }} ${GITHUB_ACTION_PATH}/../scripts/configuration/process_coding_standards_config.py
0 commit comments