Skip to content

Commit d2b7ff8

Browse files
committed
Merge branch 'main' into pdl-aggregators
Signed-off-by: Louis Mandel <[email protected]>
2 parents a124cfa + 5463193 commit d2b7ff8

File tree

146 files changed

+8847
-16985
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+8847
-16985
lines changed

.github/actions/run-examples/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runs:
3232
- uses: ./.github/actions/ollama
3333

3434
# Configure Run Examples environment
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636
with:
3737
token: ${{ inputs.token }}
3838
ref: ${{ inputs.head-ref }}

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python-version: ['3.11', '3.12', '3.13']
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Set up Python ${{ matrix.python-version }}
2323
uses: actions/setup-python@v5
2424
with:

.github/workflows/mkdocs-gh-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
# Schema
3737
- name: Copy schema
3838
run: |
@@ -44,7 +44,7 @@ jobs:
4444
- name: Setup Python
4545
uses: actions/setup-python@v5
4646
with:
47-
python-version: '3.12'
47+
python-version: '3.13'
4848
- name: Install required packages
4949
run: pip install -U mkdocs "mkdocstrings[python]" mkdocs-material pymdown-extensions
5050
- name: Build site (_site directory name is used for Jekyll compatiblity)

.github/workflows/pdl-live-react-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
run:
2020
working-directory: ./pdl-live-react
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- name: Set up node
2424
uses: actions/setup-node@v4
2525
with:

.github/workflows/publish-quay.yaml

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

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

2727
- name: Docker Setup QEMU
28-
uses: docker/setup-qemu-action@v2
28+
uses: docker/setup-qemu-action@v3
2929

3030
- name: Set up Docker Buildx
31-
uses: docker/setup-buildx-action@v2
31+
uses: docker/setup-buildx-action@v3
3232

3333
- name: Login to Docker Hub
34-
uses: docker/login-action@v2
34+
uses: docker/login-action@v3
3535
with:
3636
registry: ${{ env.REGISTRY }}
3737
username: ${{ secrets.QUAYIO_USERNAME }}
3838
password: ${{ secrets.QUAYIO_TOKEN }}
3939

4040
- name: Build and push ${{ github.ref_name }} to ${{ env.REGISTRY }}
41-
uses: docker/build-push-action@v4
41+
uses: docker/build-push-action@v6
4242
with:
4343
context: .
4444
platforms: linux/amd64,linux/arm64

.github/workflows/release-static-web-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515

16-
runs-on: 'ubuntu-22.04'
16+
runs-on: 'ubuntu-24.04'
1717
defaults:
1818
run:
1919
working-directory: ./pdl-live-react
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222

2323
- name: setup node
2424
uses: actions/setup-node@v4

.github/workflows/release-ui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run:
3131
working-directory: ./pdl-live-react
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434

3535
- name: setup node
3636
uses: actions/setup-node@v4

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- name: Set up Python
2121
uses: actions/setup-python@v5
2222
with:
@@ -50,7 +50,7 @@ jobs:
5050

5151
steps:
5252
- name: Download all the dists
53-
uses: actions/download-artifact@v4
53+
uses: actions/download-artifact@v5
5454
with:
5555
name: python-package-distributions
5656
path: dist/
@@ -115,7 +115,7 @@ jobs:
115115

116116
steps:
117117
- name: Download all the dists
118-
uses: actions/download-artifact@v4
118+
uses: actions/download-artifact@v5
119119
with:
120120
name: python-package-distributions
121121
path: dist/

.github/workflows/run-examples-prep.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212

1313
steps:
1414
# Detect modified PDL files, includes Add, Modified, but not Deleted
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
- name: Detect all PDL files that were changed or added
1919
id: changed-pdl-files
20-
uses: tj-actions/changed-files@6cb76d07bee4c9772c6882c06c37837bf82a04d3 # v46
20+
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46
2121
with:
2222
files: |
2323
**.pdl

.github/workflows/run-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix:
1616
python-version: ['3.11', '3.12', '3.13']
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
with:
2020
ref: ${{ github.head_ref }}
2121
- uses: ./.github/actions/run-examples

0 commit comments

Comments
 (0)