Skip to content

Commit b7b8600

Browse files
committed
Merge branch 'main' into dn2_client
2 parents d6945e3 + dfc6885 commit b7b8600

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/renovate.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended"
5+
]
6+
}

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
concurrency:
1212
group: ${{ github.workflow }}-${{ github.ref }}
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- uses: actions/setup-python@v5
1616
with:
17-
python-version: "3.13"
17+
python-version: "3.14"
1818
- run: python3 -m pip install --upgrade pip
1919
- id: pip-cache
2020
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
group: ${{ github.workflow }}-${{ github.ref }}
1515
steps:
1616
- name: Clone repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Setup Python environment
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: "3.13"
22+
python-version: "3.14"
2323

2424
- name: Upgrade pip
2525
run: python3 -m pip install --upgrade pip

0 commit comments

Comments
 (0)