Skip to content

Commit

Permalink
bump actions, python and poetry installation method
Browse files Browse the repository at this point in the history
  • Loading branch information
purificant committed Dec 20, 2023
1 parent 456e628 commit 6ff283a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codescan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.12

- name: Install poetry
run: make get-poetry
Expand Down
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# python version used to bootstrap local development environment
PYTHON_VERSION=3.11.2
PYTHON_VERSION=3.12.1
PROJECT_NAME=python-paseto

# create virtual environment using pyenv
Expand Down Expand Up @@ -79,5 +79,4 @@ check-spelling:

# install poetry using recommended way
get-poetry:
curl -sSL https://install.python-poetry.org | python3 -

pipx install poetry

0 comments on commit 6ff283a

Please sign in to comment.