Skip to content

Commit 7ac7350

Browse files
committed
Add cache in publish workflow
1 parent 749cb56 commit 7ac7350

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ jobs:
1313
os: [ubuntu-latest]
1414
runs-on: ${{ matrix.os }}
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
17+
- name: Install poetry
18+
run: pipx install poetry
1719
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v3
1921
with:
2022
python-version: ${{ matrix.python-version }}
21-
- name: Python Poetry Action
22-
uses: abatilo/[email protected]
23+
cache: 'poetry'
2324
- name: Install dependencies
2425
run: |
2526
poetry install

0 commit comments

Comments
 (0)