Skip to content

Commit

Permalink
Update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rickdonato committed Feb 29, 2024
1 parent a3f2e6e commit 0d0be55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ 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 }}
#----------------------------------------#
# Install & configure Poetry #
#----------------------------------------#
- 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 }}
Expand All @@ -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 }}
Expand Down

0 comments on commit 0d0be55

Please sign in to comment.