Skip to content

Commit 3d89b41

Browse files
committed
Change variable name
1 parent 0899ce9 commit 3d89b41

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

analyze-project/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ runs:
2929
echo $version
3030
echo "name=$name" >> "$GITHUB_OUTPUT"
3131
echo "version=$version" >> "$GITHUB_OUTPUT"
32-
venv="$(poetry env info --path)"
33-
echo $venv
34-
echo "venv=$venv" >> "$GITHUB_OUTPUT"
32+
dude="$(poetry env info --path)"
33+
echo $dude
34+
echo "venv=$dude" >> "$GITHUB_OUTPUT"
3535
shell: bash
3636
working-directory: ${{ inputs.project-directory }}
3737
- name: Check for lock changes
@@ -40,7 +40,7 @@ runs:
4040
- name: Cache virtualenv
4141
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
4242
with:
43-
path: ${{ steps.get_project_info.outputs.venv }}
43+
path: ${{ steps.get_project_info.outputs.dude }}
4444
key: ${{ steps.get_project_info.outputs.name }}-${{ runner.os }}-py${{ env.pythonVersion }}-${{ hashFiles(format('{0}/poetry.lock', inputs.project-directory)) }}
4545
- name: Install ${{ steps.get_project_info.outputs.name }}
4646
run: |

0 commit comments

Comments
 (0)