From 0f01fed4b27a809fb751a12564a215689a912c44 Mon Sep 17 00:00:00 2001 From: Matt Griswold Date: Wed, 17 Jan 2024 23:03:36 -0600 Subject: [PATCH] update versions --- poetry/action.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/poetry/action.yaml b/poetry/action.yaml index 290e0f3..a85aa21 100644 --- a/poetry/action.yaml +++ b/poetry/action.yaml @@ -15,7 +15,7 @@ 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 @@ -23,7 +23,7 @@ runs: 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 @@ -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') }}