Skip to content

Commit 67dd36f

Browse files
chore: update GitHub Actions to use checkout@v5 and remove semgrep and docs workflows
1 parent 9dc2d67 commit 67dd36f

8 files changed

Lines changed: 13 additions & 112 deletions

File tree

.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: 0 additions & 59 deletions
This file was deleted.

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
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

.github/workflows/rl-scanner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ 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

.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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030

3131
- name: Set up Python ${{ matrix.python-version }}
3232
uses: actions/setup-python@v4
@@ -63,8 +63,8 @@ jobs:
6363
run: |
6464
poetry run ruff check .
6565
66-
- if: ${{ matrix.python-version == '3.10' }}
67-
name: Upload coverage
68-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # pin@5.4.3
69-
with:
70-
token: ${{ secrets.CODECOV_TOKEN }}
66+
# - if: ${{ matrix.python-version == '3.10' }}
67+
# name: Upload coverage
68+
# uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # pin@5.5.0
69+
# with:
70+
# token: ${{ secrets.CODECOV_TOKEN }}

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Core runtime dependencies
2-
authlib>=1.0
2+
authlib>=1.6.3
33
httpx>=0.28.1
4-
ada-url>=1.25.0
4+
ada-url>=1.26.0
55

66
# Development and testing dependencies
77
pytest>=8.0
88
pytest-cov>=4.0
99
pytest-asyncio>=0.20.3
10-
pytest-mock>=3.14.0
10+
pytest-mock>=3.14.1
1111
pytest-httpx>=0.35.0
1212

0 commit comments

Comments
 (0)