Skip to content

Commit c7732d3

Browse files
authored
Merge branch 'main' into renovate/non-major
2 parents 26e0ca0 + a71c89b commit c7732d3

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222

2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v5
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131

@@ -65,7 +65,7 @@ jobs:
6565
6666
- name: Upload coverage to Codecov
6767
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.14'
68-
uses: codecov/codecov-action@v4
68+
uses: codecov/codecov-action@v5
6969
with:
7070
file: ./coverage.xml
7171
flags: unittests
@@ -79,10 +79,10 @@ jobs:
7979
# See: https://github.com/PyCQA/bandit/issues with ast.Num deprecation
8080
steps:
8181
- name: Checkout code
82-
uses: actions/checkout@v4
82+
uses: actions/checkout@v5
8383

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

@@ -112,12 +112,12 @@ jobs:
112112
runs-on: ubuntu-latest
113113
steps:
114114
- name: Checkout code
115-
uses: actions/checkout@v4
115+
uses: actions/checkout@v5
116116
with:
117117
fetch-depth: 0 # Needed for setuptools_scm
118118

119119
- name: Set up Python
120-
uses: actions/setup-python@v5
120+
uses: actions/setup-python@v6
121121
with:
122122
python-version: '3.14'
123123

@@ -154,15 +154,15 @@ jobs:
154154
if: github.event_name == 'pull_request' || github.ref == 'refs/heads/main'
155155
steps:
156156
- name: Checkout code
157-
uses: actions/checkout@v4
157+
uses: actions/checkout@v5
158158

159159
- name: Set up Python
160-
uses: actions/setup-python@v5
160+
uses: actions/setup-python@v6
161161
with:
162162
python-version: '3.14'
163163

164164
- name: Download build artifacts
165-
uses: actions/download-artifact@v4
165+
uses: actions/download-artifact@v5
166166
with:
167167
name: dist-${{ github.sha }}
168168
path: dist/
@@ -193,7 +193,7 @@ jobs:
193193
if: github.event_name == 'pull_request' || github.ref == 'refs/heads/main'
194194
steps:
195195
- name: Checkout code
196-
uses: actions/checkout@v4
196+
uses: actions/checkout@v5
197197
with:
198198
fetch-depth: 0 # Needed for setuptools_scm
199199

.github/workflows/publish-to-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 0 # Needed for setuptools_scm
1616

1717
- name: Set up Python 3.14
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@v6
1919
with:
2020
python-version: '3.14'
2121

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ dependencies = [
3636
[project.optional-dependencies]
3737
s3 = ["boto3==1.40.50"]
3838
aws = ["boto3==1.40.50"] # Alias for s3 for backward compatibility
39-
vault = ["hvac==1.2.1"]
40-
all = ["boto3==1.40.50", "hvac==1.2.1"]
39+
vault = ["hvac==2.3.0"]
40+
all = ["boto3==1.40.50", "hvac==2.3.0"]
4141
dev = [
4242
"pytest==8.4.2",
4343
"pytest-cov==7.0.0",
@@ -49,7 +49,7 @@ dev = [
4949
"mypy==1.18.2",
5050
"types-PyYAML==6.0.12.20250915",
5151
"boto3==1.40.50",
52-
"hvac==1.2.1",
52+
"hvac==2.3.0",
5353
"bump-my-version==1.2.4",
5454
"build==1.3.0",
5555
"twine==6.2.0",

0 commit comments

Comments
 (0)