File tree Expand file tree Collapse file tree 4 files changed +13
-15
lines changed Expand file tree Collapse file tree 4 files changed +13
-15
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,11 @@ jobs:
35
35
36
36
steps :
37
37
- name : Checkout repository
38
- uses : actions/checkout@v3
38
+ uses : actions/checkout@v4
39
39
40
40
# Initializes the CodeQL tools for scanning.
41
41
- name : Initialize CodeQL
42
- uses : github/codeql-action/init@v2
42
+ uses : github/codeql-action/init@v3
43
43
with :
44
44
languages : ${{ matrix.language }}
45
45
# If you wish to specify custom queries, you can do so here or in a config file.
50
50
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
51
51
# If this step fails, then you should remove it and run the build manually (see below)
52
52
- name : Autobuild
53
- uses : github/codeql-action/autobuild@v2
53
+ uses : github/codeql-action/autobuild@v3
54
54
55
55
# ℹ️ Command-line programs to run using the OS shell.
56
56
# 📚 https://git.io/JvXDl
64
64
# make release
65
65
66
66
- name : Perform CodeQL Analysis
67
- uses : github/codeql-action/analyze@v2
67
+ uses : github/codeql-action/analyze@v3
Original file line number Diff line number Diff line change 9
9
name : Build with Poetry and Publish to PyPI
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v3
13
- - uses : actions/setup-python@v3
12
+ - uses : actions/checkout@v4
13
+ - uses : actions/setup-python@v4
14
14
- name : Install and configure Poetry
15
15
run : |
16
16
pip install poetry
Original file line number Diff line number Diff line change @@ -23,16 +23,14 @@ jobs:
23
23
strategy :
24
24
matrix :
25
25
python-version :
26
- - " 3.7"
27
- - " 3.8"
28
26
- " 3.9"
29
27
- " 3.10"
30
28
- " 3.11"
31
29
- " 3.12"
32
30
steps :
33
- - uses : actions/checkout@v3
31
+ - uses : actions/checkout@v4
34
32
- name : Set up Python ${{ matrix.python-version }}
35
- uses : actions/setup-python@v3
33
+ uses : actions/setup-python@v4
36
34
with :
37
35
python-version : ${{ matrix.python-version }}
38
36
- name : Install and configure Poetry
Original file line number Diff line number Diff line change @@ -38,17 +38,17 @@ jwkconv = "cryptojwt.tools.keyconv:main"
38
38
jwtpeek = " cryptojwt.tools.jwtpeek:main"
39
39
40
40
[tool .poetry .dependencies ]
41
- python = " ^3.7 "
41
+ python = " ^3.9 "
42
42
cryptography = " >=3.4.6"
43
43
requests = " ^2.25.1"
44
44
45
45
[tool .poetry .dev-dependencies ]
46
46
alabaster = " ^0.7.12"
47
- black = " ^22 "
48
- isort = " ^5.6.4 "
49
- pytest = " ^6.1.2 "
47
+ black = " ^24.4.2 "
48
+ isort = " ^5.13.2 "
49
+ pytest = " ^8.2.1 "
50
50
pytest-black = " ^0.3.12"
51
- pytest-isort = " ^1.2 .0"
51
+ pytest-isort = " ^4.0 .0"
52
52
pytest-cov = " ^4.0.0"
53
53
responses = " ^0.13.0"
54
54
sphinx = " ^3.5.2"
You can’t perform that action at this time.
0 commit comments