Skip to content

Commit 9e8c51c

Browse files
fix(deps): update major-release
1 parent a7dece5 commit 9e8c51c

File tree

12 files changed

+134
-256
lines changed

12 files changed

+134
-256
lines changed

.github/workflows/_docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
outputs:
3535
tags: ${{ steps.meta.outputs.tags }}
3636
steps:
37-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3838
- name: Log in to the Container registry
3939
uses: docker/login-action@v3
4040
with:

.github/workflows/cargo-audit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
security_audit:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
23+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2424
- run: mv server/* .
2525
- uses: rustsec/audit-check@69366f33c96575abad1ee0dba8212993eecbe998 # v2.0.0
2626
with:

.github/workflows/data-cicd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
matrix:
2121
python-version: [ "3.13" ]
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- name: Set up Python ${{ matrix.python-version }}
2525
uses: actions/setup-python@v6
2626
with:

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
contents: read
1919
steps:
2020
- run: rustup update stable && rustup default stable
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- uses: pnpm/action-setup@v4
2323
with:
2424
version: 10.14.0

.github/workflows/server-cicd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- run: rustup update stable && rustup default stable
2121
- name: Setup | Checkout
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
- name: Setup | Rust-Cache
2424
uses: Swatinem/rust-cache@v2
2525
with:
@@ -44,7 +44,7 @@ jobs:
4444
steps:
4545
- run: rustup update stable && rustup default stable
4646
- name: Setup | Checkout
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848
- name: Setup | Rust-Cache
4949
uses: Swatinem/rust-cache@v2
5050
with:

.github/workflows/update-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
update-data:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- uses: pnpm/action-setup@v4
1717
with:
1818
version: 10.14.0

.github/workflows/update-openapi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
- run: rustup update stable && rustup default stable
3535
- name: Setup | Checkout
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737
with:
3838
ref: ${{ github.head_ref }} # otherwise commit-backs to the branch don't work
3939

.github/workflows/webclient-cicd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
permissions:
1818
contents: read
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- uses: pnpm/action-setup@v4
2222
with:
2323
version: 10.14.0

data/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defusedxml==0.7.1
44
lxml==6.0.2
55
Pillow==12.0.0
66
polars==1.9.0
7-
pyarrow==21.0.0
7+
pyarrow==22.0.0
88
pydantic==2.12.0
99
pyyaml==6.0.3
1010
requests==2.32.5

webclient/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# https://docs.docker.com/build/attestations/sbom/#scan-build-context
22
ARG BUILDKIT_SBOM_SCAN_CONTEXT=true
33

4-
FROM node:23-alpine3.21 AS base
4+
FROM node:24-alpine3.21 AS base
55

66
RUN apk update --no-progress --quiet && \
77
apk add --no-cache --no-progress --quiet curl sqlite sqlite-libs

0 commit comments

Comments
 (0)