Skip to content

Commit 872184b

Browse files
chore(deps): update all dependencies
1 parent df7cd7f commit 872184b

5 files changed

Lines changed: 313 additions & 609 deletions

File tree

.github/workflows/docs-links.yaml

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

1111
steps:
1212
- name: Checkout main
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414

1515
- name: Install linkchecker
1616
run: sudo pip install LinkChecker

.github/workflows/pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
curl --head --fail --retry-delay 1 --retry 30 --retry-connrefused http://localhost
2121
2222
run-dotrun:
23-
runs-on: ubuntu-22.04
23+
runs-on: ubuntu-24.04
2424

2525
steps:
2626
- uses: actions/checkout@v4
@@ -70,7 +70,7 @@ jobs:
7070
run: yarn lint-python
7171

7272
test-python:
73-
runs-on: ubuntu-20.04
73+
runs-on: ubuntu-24.04
7474

7575
steps:
7676
- uses: actions/checkout@v4

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Build stage: Install python dependencies
44
# ===
5-
FROM ubuntu:jammy AS python-dependencies
5+
FROM ubuntu:noble AS python-dependencies
66
RUN apt-get update && apt-get install --no-install-recommends --yes python3-pip python3-setuptools
77
ADD requirements.txt /tmp/requirements.txt
88
RUN pip3 config set global.disable-pip-version-check true
@@ -11,7 +11,7 @@ RUN --mount=type=cache,target=/root/.cache/pip pip3 install --user --requirement
1111

1212
# Build stage: Install yarn dependencies
1313
# ===
14-
FROM node:20 AS yarn-dependencies
14+
FROM node:23 AS yarn-dependencies
1515
WORKDIR /srv
1616
ADD package.json .
1717
RUN --mount=type=cache,target=/usr/local/share/.cache/yarn yarn install
@@ -34,7 +34,7 @@ RUN yarn run build-js
3434

3535
# Build the production image
3636
# ===
37-
FROM ubuntu:jammy
37+
FROM ubuntu:noble
3838

3939
ADD . .
4040
# Install python and import python dependencies

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727
"autoprefixer": "10.4.13",
2828
"sass": "1.57.1",
2929
"postcss": "8.4.31",
30-
"postcss-cli": "10.1.0",
30+
"postcss-cli": "11.0.0",
3131
"vanilla-framework": "4.16.0"
3232
},
3333
"devDependencies": {
34-
"prettier": "2.8.8",
35-
"stylelint": "14.16.1",
34+
"prettier": "3.4.1",
35+
"stylelint": "16.11.0",
3636
"stylelint-config-prettier": "9.0.5",
37-
"stylelint-config-standard-scss": "6.1.0",
37+
"stylelint-config-standard-scss": "14.0.0",
3838
"stylelint-order": "6.0.4",
3939
"watch-cli": "0.2.3"
4040
}

0 commit comments

Comments
 (0)