Skip to content

Commit

Permalink
fix: Remove unused working-directories
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Gardner <adam.gardner@armakuni.com>
  • Loading branch information
PurpleBooth and ak-adam-gardner committed Jul 4, 2023
1 parent 15ef92a commit 473b5fc
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,18 @@ runs:
- name: Set up python 3.11
id: setup-python
uses: actions/setup-python@v4
working-directory: ${{ github.action_path }}
with:
python-version: 3.11
- name: Load cached Poetry Binary
id: cached-poetry-binary
uses: actions/cache@v3
working-directory: ${{ github.action_path }}
with:
path: ~/.local
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}
- shell: bash
working-directory: ${{ github.action_path }}
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Load cached venv
working-directory: ${{ github.action_path }}
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
Expand Down

0 comments on commit 473b5fc

Please sign in to comment.