diff --git a/action.yml b/action.yml index 6fe6a32..9a2063c 100644 --- a/action.yml +++ b/action.yml @@ -24,7 +24,7 @@ runs: #---------------------------# - name: Set up python ${{ inputs.python-version }} id: setup-python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ inputs.python-version }} #----------------------------------------# @@ -32,7 +32,7 @@ runs: #----------------------------------------# - name: Load cached Poetry Binary id: cached-poetry-binary - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.local key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ inputs.poetry-version }} @@ -47,7 +47,7 @@ runs: #----------------------------------------------# - name: Load cached venv id: cached-poetry-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}${{ inputs.install-args }}