Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
61d3a69
chore(ci): bump mikefarah/yq from 4.52.2 to 4.52.4
dependabot[bot] Feb 16, 2026
e0b7d91
Merge pull request #23 from Pymetheus/develop
Pymetheus Feb 16, 2026
d22effa
Merge pull request #21 from Pymetheus/dependabot/github_actions/mikef…
Pymetheus Feb 16, 2026
fd46767
chore(ci): bump actions/download-artifact from 7 to 8
dependabot[bot] Mar 2, 2026
48bb595
chore(ci): bump actions/upload-artifact from 6 to 7
dependabot[bot] Mar 2, 2026
f800944
Merge pull request #24 from Pymetheus/dependabot/github_actions/actio…
Pymetheus Mar 2, 2026
993e8f6
Merge pull request #25 from Pymetheus/dependabot/github_actions/actio…
Pymetheus Mar 2, 2026
55a39a2
chore(ci): bump codecov/codecov-action from 5 to 6
dependabot[bot] Mar 30, 2026
814f71d
chore(ci): bump mikefarah/yq from 4.52.4 to 4.52.5
dependabot[bot] Mar 30, 2026
f07920b
Merge pull request #26 from Pymetheus/dependabot/github_actions/codec…
Pymetheus Mar 30, 2026
9df1bf3
Merge pull request #27 from Pymetheus/dependabot/github_actions/mikef…
Pymetheus Mar 30, 2026
2d2beca
chore(ci): bump actions/github-script from 8 to 9
dependabot[bot] Apr 13, 2026
5d36dac
chore(deps): update python-dotenv requirement from >=1.2.1 to >=1.2.2
dependabot[bot] Apr 13, 2026
6361bc4
chore(deps): update pytest-cov requirement from >=7.0.0 to >=7.1.0
dependabot[bot] Apr 13, 2026
d176b60
chore(deps): update pydantic-settings requirement
dependabot[bot] Apr 13, 2026
c23f1f8
Merge pull request #28 from Pymetheus/dependabot/github_actions/actio…
Pymetheus Apr 14, 2026
3a46493
Merge pull request #29 from Pymetheus/dependabot/pip/python-dotenv-gt…
Pymetheus Apr 14, 2026
54bf33f
Merge pull request #30 from Pymetheus/dependabot/pip/pytest-cov-gte-7…
Pymetheus Apr 14, 2026
ae74321
Merge pull request #33 from Pymetheus/dependabot/pip/pydantic-setting…
Pymetheus Apr 14, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
echo "distribution=$DISTRIBUTION" >> $GITHUB_OUTPUT

- name: Install yq
uses: mikefarah/yq@v4.52.2
uses: mikefarah/yq@v4.52.5

- name: Load bootstrap config
id: load_config
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: actions/checkout@v6

- name: Download build artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: python-package-distributions-${{ github.event.workflow_run.head_sha }}
path: dist/
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
#
# steps:
# - name: Download build artifacts
# uses: actions/download-artifact@v7
# uses: actions/download-artifact@v8
# with:
# name: python-package-distributions-${{ github.event.workflow_run.head_sha }}
# path: dist/
Expand All @@ -123,7 +123,7 @@ jobs:
# uses: actions/checkout@v6
#
# - name: Download build artifacts
# uses: actions/download-artifact@v7
# uses: actions/download-artifact@v8
# with:
# name: python-package-distributions-${{ github.event.workflow_run.head_sha }}
# path: dist/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:

- name: Upload coverage report as artifact
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == env.PYTHON_VERSION }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-report-${{ matrix.python-version }}-${{ matrix.os }}-${{ github.run_id }}
path: |
Expand All @@ -88,7 +88,7 @@ jobs:

- name: Upload coverage reports to Codecov
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == env.PYTHON_VERSION }}
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}

Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
uv build

- name: Upload distribution as artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: python-package-distributions-${{ github.sha }}
path: dist/
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
uses: actions/checkout@v6

- name: Download build artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: python-package-distributions-${{ github.sha }}
path: dist/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check PR has description
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const pr = context.payload.pull_request;
Expand Down Expand Up @@ -152,15 +152,15 @@ jobs:

- name: Upload coverage report as artifact
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-report-${{ env.PYTHON_VERSION }}-${{ github.run_id }}
path: |
.log/coverage/htmlcov
.log/coverage/coverage.xml

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
override_pr: ${{ github.event.pull_request.number }}
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
uses: actions/checkout@v6

- name: Apply labels based on PR title
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const prTitle = context.payload.pull_request.title.toLowerCase();
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

- name: Upload SARIF as build artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: snyk-results
path: |
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:

- name: Upload Bandit results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: bandit-report
path: bandit-report.json
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ classifiers = [
]

dependencies = [
"pydantic-settings>=2.12.0",
"pydantic-settings>=2.13.1",
"structlog>=25.5.0",
]

[dependency-groups]
test = ["pytest>=9.0.0", "pytest-cov>=7.0.0"]
test = ["pytest>=9.0.0", "pytest-cov>=7.1.0"]
quality = ["prek>=0.3.1", "bandit[toml]>=1.7.6", "ruff>=0.14.7", "mypy>=1.19.0"]
dev = [
{include-group = "test"},
{include-group = "quality"},
"python-dotenv>=1.2.1",
"python-dotenv>=1.2.2",
]

[project.urls]
Expand Down
Loading