Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
22 changes: 11 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:

- name: Upload coverage to Codecov
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.14'
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
file: ./coverage.xml
flags: unittests
Expand All @@ -79,10 +79,10 @@ jobs:
# See: https://github.com/PyCQA/bandit/issues with ast.Num deprecation
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.13' # Use 3.13 until bandit supports 3.14

Expand Down Expand Up @@ -112,12 +112,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # Needed for setuptools_scm

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.14'

Expand Down Expand Up @@ -154,15 +154,15 @@ jobs:
if: github.event_name == 'pull_request' || github.ref == 'refs/heads/main'
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.14'

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: dist-${{ github.sha }}
path: dist/
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
if: github.event_name == 'pull_request' || github.ref == 'refs/heads/main'
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # Needed for setuptools_scm

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # Needed for setuptools_scm

- name: Set up Python 3.14
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.14'

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ dependencies = [
[project.optional-dependencies]
s3 = ["boto3==1.34.6"]
aws = ["boto3==1.34.6"] # Alias for s3 for backward compatibility
vault = ["hvac==1.2.1"]
all = ["boto3==1.34.6", "hvac==1.2.1"]
vault = ["hvac==2.3.0"]
all = ["boto3==1.34.6", "hvac==2.3.0"]
dev = [
"pytest==8.4.2",
"pytest-cov==7.0.0",
Expand All @@ -49,7 +49,7 @@ dev = [
"mypy==1.18.2",
"types-PyYAML==6.0.12.20250915",
"boto3==1.34.6",
"hvac==1.2.1",
"hvac==2.3.0",
"bump-my-version==1.2.4",
"build==1.3.0",
"twine==6.2.0",
Expand Down
Loading