diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a42784..749f439 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: # reference the matrixe python version here. - uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: 3.11 # Cache the installation of Poetry itself, e.g. the next step. This prevents the workflow # from installing Poetry every time, which can be slow. Note the use of the Poetry version @@ -25,7 +25,7 @@ jobs: uses: actions/cache@v2 with: path: ~/.local - key: poetry-1.1.14-0 + key: poetry-1.7.1-0 # Install Poetry. You could do this manually, or there are several actions that do this. # `snok/install-poetry` seems to be minimal yet complete, and really just calls out to @@ -38,7 +38,7 @@ jobs: # cache it. - uses: snok/install-poetry@v1 with: - version: 1.1.14 + version: 1.7.1 virtualenvs-create: true virtualenvs-in-project: true