Skip to content

Commit 97021ee

Browse files
authored
Merge branch 'main' into hotfix/bool-additionalProperties
2 parents 817f6ba + 5f9b33d commit 97021ee

33 files changed

+5330
-3525
lines changed

.github/renovate.json5

Lines changed: 7 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
extends: [
44
"config:base",
55
":disableRateLimiting",
6-
":dependencyDashboard",
76
":semanticCommits",
87
":enablePreCommit",
98
":automergeDigest",
@@ -16,37 +15,19 @@
1615
"pre-commit": {
1716
enabled: true,
1817
},
19-
poetry: {
20-
fileMatch: ["pyproject.toml"],
21-
},
22-
pip_requirements: {
23-
fileMatch: [
24-
"requirements-test.txt",
25-
"requirements-composer.txt",
26-
"constraints.txt",
27-
"constraints-test.txt",
28-
],
29-
},
18+
enabledManagers: [
19+
"github-actions",
20+
"dockerfile",
21+
"docker-compose",
22+
"pre-commit"
23+
],
24+
ignorePaths: [],
3025
packageRules: [
31-
{
32-
matchManagers: ["poetry", "pip_requirements"],
33-
matchPackagePatterns: ["^pytest"],
34-
groupName: "pytest packages",
35-
groupSlug: "pytest",
36-
separateMinorPatch: true,
37-
},
38-
{
39-
matchManagers: ["poetry", "pip_requirements"],
40-
matchDepTypes: ["python"],
41-
allowedVersions: "^3.9",
42-
enabled: true,
43-
},
4426
{
4527
description: "Auto merge non-major updates",
4628
matchUpdateTypes: ["minor", "patch"],
4729
automerge: true,
4830
automergeType: "pr",
4931
},
5032
],
51-
ignorePaths: [],
5233
}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
21+
uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98
2222

2323
- name: Install Poetry
2424
uses: abatilo/actions-poetry@b8f6fe29ba2eb78e0d45ccbf41cd14154c4e25b2
@@ -29,7 +29,7 @@ jobs:
2929
poetry config virtualenvs.in-project true --local
3030
3131
- name: Setup Python ${{ matrix.python-version }}
32-
uses: actions/setup-python@cfd55ca82492758d853442341ad4d8010466803a
32+
uses: actions/setup-python@4f41a90a1f38628c7ccc608d05fbafe701bc20ae
3333
with:
3434
python-version: ${{ matrix.python-version }}
3535
cache: "poetry"

.github/workflows/docs-update.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
notify-docs:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
17+
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
1818
id: app-token
1919
with:
2020
app-id: ${{ vars.UPDATE_DOCS_APP_ID }}

.github/workflows/meta-labeler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Generate Token
20-
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
20+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
2121
id: app-token
2222
with:
2323
app-id: "${{ secrets.BOT_APP_ID }}"

.github/workflows/meta-sync-labels.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Generate Token
21-
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
21+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
2222
id: app-token
2323
with:
2424
app-id: "${{ secrets.BOT_APP_ID }}"
2525
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
2626

2727
- name: Set up git repository
28-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
28+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2929
with:
3030
token: "${{ steps.app-token.outputs.token }}"
3131

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
18+
uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98
1919

2020
- name: Setup Python
21-
uses: actions/setup-python@cfd55ca82492758d853442341ad4d8010466803a
21+
uses: actions/setup-python@4f41a90a1f38628c7ccc608d05fbafe701bc20ae
2222
with:
23-
python-version: "3.10"
23+
python-version: "3.14"
2424

2525
- name: Install Poetry
2626
uses: abatilo/actions-poetry@b8f6fe29ba2eb78e0d45ccbf41cd14154c4e25b2
@@ -47,4 +47,4 @@ jobs:
4747
run: poetry build
4848

4949
- name: Publish to PyPI
50-
uses: pypa/gh-action-pypi-publish@ab69e431e9c9f48a3310be0a56527c679f56e04d
50+
uses: pypa/gh-action-pypi-publish@03f86fee9ac21f854951f5c6e2a02c2a1324aec7

.github/workflows/renovate.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ jobs:
5252
runs-on: ubuntu-latest
5353
steps:
5454
- name: Generate Token
55-
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
55+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
5656
id: app-token
5757
with:
5858
app-id: "${{ secrets.BOT_APP_ID }}"
5959
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
6060

6161
- name: Checkout
62-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
62+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
6363
with:
6464
token: "${{ steps.app-token.outputs.token }}"
6565

@@ -80,7 +80,7 @@ jobs:
8080
GITHUB_TOKEN: "${{ steps.app-token.outputs.token }}"
8181

8282
- name: Renovate
83-
uses: renovatebot/github-action@ea850436a5fe75c0925d583c7a02c60a5865461d # v43.0.20
83+
uses: renovatebot/github-action@66387ab8c2464d575b933fa44e9e5a86b2822809 # v44.2.4
8484
with:
8585
configurationFile: "${{ env.RENOVATE_ONBOARDING_CONFIG_FILE_NAME }}"
8686
token: "${{ steps.app-token.outputs.token }}"

.github/workflows/rigging_pr_description.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
contents: read
1414

1515
steps:
16-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
16+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
1717
with:
1818
fetch-depth: 0 # full history for proper diffing
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
21+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
2222
with:
23-
python-version: "3.10"
23+
python-version: "3.14"
2424

2525
- name: Install uv
2626
run: |

.github/workflows/semgrep.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Set up git repository
41-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
41+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4242
with:
4343
token: ${{ secrets.GITHUB_TOKEN }}
4444

.github/workflows/template-sync.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ jobs:
4242
runs-on: ubuntu-latest
4343
steps:
4444
- name: Generate Token
45-
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
45+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
4646
id: app-token
4747
with:
4848
app-id: "${{ secrets.BOT_APP_ID }}"
4949
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
5050
owner: "${{ github.repository_owner }}"
5151

5252
- name: Checkout
53-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
53+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
5454
with:
5555
token: "${{ steps.app-token.outputs.token }}"
5656

0 commit comments

Comments
 (0)