Skip to content

Commit

Permalink
v3 (#45)
Browse files Browse the repository at this point in the history
gh actions update
  • Loading branch information
coreyjs authored Feb 22, 2024
1 parent 1bdcc6d commit c3f7f83
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# If you wanted to use multiple Python versions, you'd have specify a matrix in the job and
# reference the matrixe python version here.
- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
with:
python-version: 3.9.18

Expand All @@ -30,7 +30,7 @@ jobs:
# manually if/when you want to upgrade Poetry, or if something goes wrong. This could be
# mildly cleaner by using an environment variable, but I don't really care.
- name: cache poetry install
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.local
key: poetry-1.5.1-0
Expand All @@ -55,7 +55,7 @@ jobs:
# them in the cache key. I'm not, so it can be simple and just depend on the poetry.lock.
- name: cache deps
id: cache-deps
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .venv
key: pydeps-${{ hashFiles('**/poetry.lock') }}
Expand Down

0 comments on commit c3f7f83

Please sign in to comment.