Skip to content

Commit

Permalink
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Aug 23, 2024
1 parent 8a449ce commit fcfd3f1
Show file tree
Hide file tree
Showing 4 changed files with 525 additions and 680 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
run: yarn lint-python

test-python:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

# Build stage: Install python dependencies
# ===
FROM ubuntu:jammy AS python-dependencies
FROM ubuntu:noble AS python-dependencies
RUN apt-get update && apt-get install --no-install-recommends --yes python3-pip python3-setuptools
COPY requirements.txt /tmp/requirements.txt
RUN pip3 config set global.disable-pip-version-check true
RUN --mount=type=cache,target=/root/.cache/pip pip3 install --user --requirement /tmp/requirements.txt

# Build stage: Install yarn dependencies
# ===
FROM node:18 AS yarn-dependencies
FROM node:22 AS yarn-dependencies
WORKDIR /srv
COPY . .
RUN --mount=type=cache,target=/usr/local/share/.cache/yarn yarn install
Expand All @@ -28,7 +28,7 @@ RUN yarn run build-js

# Build the production image
# ===
FROM ubuntu:jammy
FROM ubuntu:noble

ENV LANG C.UTF-8
WORKDIR /srv
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@
"babel-loader": "^9.0.0",
"babel-preset-env": "^1.7.0",
"esbuild": "0.16.13",
"concurrently": "7.6.0",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"concurrently": "8.2.2",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"postcss": "8.4.31",
"prettier": "2.8.1",
"prettier": "3.3.3",
"sass": "1.57.1",
"postcss-cli": "10.1.0",
"stylelint": "14.16.1",
"stylelint-config-standard-scss": "6.1.0",
"postcss-cli": "11.0.0",
"stylelint": "16.8.2",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-order": "6.0.1",
"watch-cli": "0.2.3"
}
Expand Down
Loading

0 comments on commit fcfd3f1

Please sign in to comment.