Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
grizz committed Jan 18, 2024
1 parent 1503c38 commit 0f01fed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions poetry/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ runs:
using: "composite"
steps:
- name: Set up python ${{ inputs.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}
- name: Get Python version
shell: bash
run: |
echo "PYTHON_VERSION=$(python --version | awk '{ print $NF }')" >> $GITHUB_ENV
- name: Load cached Poetry installation
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.local
key: dotlocal-${{ runner.os }}-py${{ env.PYTHON_VERSION }}-0
Expand All @@ -50,7 +50,7 @@ runs:
run: echo "got venv path ${{ steps.get-venv-path.outputs.venv-path }}"
- name: Load cached venv
id: cached-poetry-venv
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ steps.get-venv-path.outputs.venv-path }}
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
Expand Down

0 comments on commit 0f01fed

Please sign in to comment.