Skip to content

Commit 6ef05d4

Browse files
Updating Dependancies And Workflow Action Versions (#653)
Bumping up the dependancies to latest versions
1 parent 3d5df93 commit 6ef05d4

File tree

7 files changed

+365
-205
lines changed

7 files changed

+365
-205
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/checkout@v4
2323

2424
- name: Setup Pages
25-
uses: actions/configure-pages@v4
25+
uses: actions/configure-pages@v5
2626

2727
- name: Configure Python
2828
uses: actions/setup-python@v5

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ permissions:
1212

1313
jobs:
1414
rl-scanner:
15-
uses: ./.github/workflows/rl-scanner.yml
15+
uses: ./.github/workflows/rl-scanner
1616
with:
17-
node-version: 18
17+
python-version: 3.10
1818
artifact-name: "auth0-python.tgz"
1919
secrets:
2020
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }}

.github/workflows/snyk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
ref: ${{ github.event.pull_request.head.sha || github.ref }}
3636

37-
- uses: snyk/actions/python-3.8@4a528b5c534bb771b6e3772656a8e0e9dc902f8b # pinned 2023-06-13
37+
- uses: snyk/actions/python-3.8@cdb760004ba9ea4d525f2e043745dfe85bb9077e # pinned 2023-06-13
3838
continue-on-error: true # Make sure the SARIF upload is called
3939
env:
4040
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ jobs:
8080

8181
- if: ${{ matrix.python-version == '3.10' }}
8282
name: Upload coverage
83-
uses: codecov/codecov-action@4fe8c5f003fae66aa5ebb77cfd3e7bfbbda0b6b0 # pin@3.1.5
83+
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # pin@5.3.1

poetry.lock

Lines changed: 353 additions & 193 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ folders = [{ path = "auth0" }]
2727

2828
[tool.poetry.dependencies]
2929
python = ">=3.8"
30-
aiohttp = "^3.8.5"
30+
aiohttp = "^3.10.11"
3131
cryptography = "^43.0.1" # pyjwt has a weak dependency on cryptography
3232
pyjwt = "^2.8.0"
33-
requests = "^2.31.0"
34-
urllib3 = "^2.0.7" # requests has a weak dependency on urllib3
33+
requests = "^2.32.3"
34+
urllib3 = "^2.2.3" # requests has a weak dependency on urllib3
3535

3636
[tool.poetry.group.dev.dependencies]
3737
aioresponses = "^0.7.4"
3838
mock = "^5.1.0"
39-
pipx = "^1.2.0"
39+
pipx = "^1.7.1"
4040
pytest = "^7.4.0"
4141
pytest-aiohttp = "^1.0.4"
4242
pytest-asyncio = ">=0.21.1,<0.24.0"

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ argcomplete==3.1.1 ; python_version >= "3.7" and python_version < "4.0"
55
async-timeout==4.0.3 ; python_version >= "3.7" and python_version < "4.0"
66
asynctest==0.13.0 ; python_version >= "3.7" and python_version < "3.8"
77
attrs==23.1.0 ; python_version >= "3.7" and python_version < "4.0"
8-
certifi==2023.7.22 ; python_version >= "3.7" and python_version < "4.0"
8+
certifi==2023.11.17 ; python_version >= "3.7" and python_version < "4.0"
99
cffi==1.15.1 ; python_version >= "3.7" and python_version < "4.0"
1010
charset-normalizer==3.2.0 ; python_version >= "3.7" and python_version < "4.0"
1111
click==8.1.7 ; python_version >= "3.7" and python_version < "4.0"
@@ -14,7 +14,7 @@ coverage[toml]==7.2.7 ; python_version >= "3.7" and python_version < "4.0"
1414
cryptography==43.0.1 ; python_version >= "3.7" and python_version < "4.0"
1515
exceptiongroup==1.1.3 ; python_version >= "3.7" and python_version < "3.11"
1616
frozenlist==1.3.3 ; python_version >= "3.7" and python_version < "4.0"
17-
idna==3.4 ; python_version >= "3.7" and python_version < "4.0"
17+
idna==3.10 ; python_version >= "3.7" and python_version < "4.0"
1818
importlib-metadata==6.7.0 ; python_version >= "3.7" and python_version < "3.8"
1919
iniconfig==2.0.0 ; python_version >= "3.7" and python_version < "4.0"
2020
mock==5.1.0 ; python_version >= "3.7" and python_version < "4.0"
@@ -26,7 +26,7 @@ pycparser==2.21 ; python_version >= "3.7" and python_version < "4.0"
2626
pyjwt==2.8.0 ; python_version >= "3.7" and python_version < "4.0"
2727
pyopenssl==23.2.0 ; python_version >= "3.7" and python_version < "4.0"
2828
pytest-aiohttp==1.0.4 ; python_version >= "3.7" and python_version < "4.0"
29-
pytest-asyncio==0.21.1 ; python_version >= "3.7" and python_version < "4.0"
29+
pytest-asyncio==0.23.8 ; python_version >= "3.7" and python_version < "4.0"
3030
pytest-cov==4.1.0 ; python_version >= "3.7" and python_version < "4.0"
3131
pytest==7.4.0 ; python_version >= "3.7" and python_version < "4.0"
3232
pyyaml==6.0.1 ; python_version >= "3.7" and python_version < "4.0"

0 commit comments

Comments
 (0)