Skip to content

Commit f13b580

Browse files
chore: fix workflow syntax errors and update dependencies (#724)
### Changes - Bump Dependancy in `requirements.txt` and `pyproject.toml` - Update `poetry.lock` file - Remove `Semgrep` Workflow
1 parent 49da078 commit f13b580

File tree

10 files changed

+137
-188
lines changed

10 files changed

+137
-188
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: exit 0 # Skip unnecessary test runs for dependabot and merge queues. Artifically flag as successful, as this is a required check for branch protection.
3737

3838
- name: Checkout
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040

4141
- name: Initialize CodeQL
4242
uses: github/codeql-action/init@v3

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Setup Pages
2525
uses: actions/configure-pages@v5
2626

2727
- name: Configure Python
28-
uses: actions/setup-python@v5
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: "3.10"
3131

@@ -42,7 +42,7 @@ jobs:
4242
sphinx-build ./docs/source ./docs/build --keep-going -n -a -b html
4343
4444
- name: Upload artifact
45-
uses: actions/upload-pages-artifact@v3
45+
uses: actions/upload-pages-artifact@v4
4646
with:
4747
path: "./docs/build"
4848

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Checkout code
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 0
3838
fetch-tags: true
@@ -68,7 +68,7 @@ jobs:
6868
prerelease: ${{ steps.get_prerelease.outputs.prerelease }}
6969

7070
- name: Configure Python
71-
uses: actions/setup-python@v5
71+
uses: actions/setup-python@v6
7272
with:
7373
python-version: "3.9"
7474

.github/workflows/rl-scanner.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,13 @@ jobs:
3131
scan-status: ${{ steps.rl-scan-conclusion.outcome }}
3232

3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 0
3737
fetch-tags: true
3838

3939
- name: Configure Python
40-
uses: actions/setup-python@v5
41-
with:
40+
uses: actions/setup-python@v6
4241
python-version: ${{ inputs.python-version }}
4342

4443
- name: Configure dependencies

.github/workflows/semgrep.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/snyk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- if: github.actor == 'dependabot[bot]' || github.event_name == 'merge_group'
3232
run: exit 0 # Skip unnecessary test runs for dependabot and merge queues. Artifically flag as successful, as this is a required check for branch protection.
3333

34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
with:
3636
ref: ${{ github.event.pull_request.head.sha || github.ref }}
3737

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ jobs:
4242

4343
steps:
4444
- name: Checkout code
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646
with:
4747
ref: ${{ github.event.pull_request.head.sha || github.ref }}
4848

4949
- name: Configure Python ${{ matrix.python-version }}
50-
uses: actions/setup-python@v5
50+
uses: actions/setup-python@v6
5151
with:
5252
python-version: "${{ matrix.python-version }}"
5353

@@ -80,6 +80,6 @@ jobs:
8080

8181
- if: ${{ matrix.python-version == '3.10' }}
8282
name: Upload coverage
83-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # pin@5.4.3
83+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # pin@5.5.1
8484
with:
8585
token: ${{ secrets.CODECOV_TOKEN }}

poetry.lock

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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ requests = ">=2.32.3"
3434
urllib3 = ">=2.2.3" # requests has a weak dependency on urllib3
3535

3636
[tool.poetry.group.dev.dependencies]
37-
aioresponses = "^0.7.4"
37+
aioresponses = "^0.7.8"
3838
mock = "^5.1.0"
3939
pipx = "^1.7.1"
4040
pytest = "^7.4.0"
4141
pytest-aiohttp = "^1.0.4"
4242
pytest-asyncio = ">=0.21.1,<0.24.0"
4343
pytest-cov = "^4.1.0"
44-
responses = ">=0.23.3,<0.25.0"
44+
responses = ">=0.23.3,<0.26.0"

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ argcomplete==3.5.3 ; 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==2025.1.31 ; python_version >= "3.7" and python_version < "4.0"
8+
certifi==2025.8.3 ; python_version >= "3.7" and python_version < "4.0"
99
cffi==1.17.1 ; python_version >= "3.7" and python_version < "4.0"
1010
charset-normalizer==3.4.2 ; python_version >= "3.7" and python_version < "4.0"
1111
click==8.1.8 ; python_version >= "3.7" and python_version < "4.0"
@@ -19,7 +19,7 @@ importlib-metadata==6.7.0 ; python_version >= "3.7" and python_version < "3.8"
1919
iniconfig==2.1.0 ; python_version >= "3.7" and python_version < "4.0"
2020
mock==5.2.0 ; python_version >= "3.7" and python_version < "4.0"
2121
multidict==6.0.4 ; python_version >= "3.7" and python_version < "4.0"
22-
packaging==23.1 ; python_version >= "3.7" and python_version < "4.0"
22+
packaging==23.2 ; python_version >= "3.7" and python_version < "4.0"
2323
pipx==1.2.0 ; python_version >= "3.7" and python_version < "4.0"
2424
pluggy==1.2.0 ; python_version >= "3.7" and python_version < "4.0"
2525
pycparser==2.21 ; python_version >= "3.7" and python_version < "4.0"
@@ -32,7 +32,7 @@ pytest==7.4.0 ; python_version >= "3.7" and python_version < "4.0"
3232
pyyaml==6.0.2 ; python_version >= "3.7" and python_version < "4.0"
3333
requests==2.32.4 ; python_version >= "3.7" and python_version < "4.0"
3434
responses==0.23.3 ; python_version >= "3.7" and python_version < "4.0"
35-
tomli==2.0.1 ; python_version >= "3.7" and python_full_version <= "3.11.0a6"
35+
tomli==2.2.1 ; python_version >= "3.7" and python_full_version <= "3.11.0a6"
3636
types-pyyaml==6.0.12.11 ; python_version >= "3.7" and python_version < "4.0"
3737
typing-extensions==4.7.1 ; python_version >= "3.7" and python_version < "3.8"
3838
urllib3==2.5.0 ; python_version >= "3.7" and python_version < "4.0"

0 commit comments

Comments
 (0)