Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all dependencies #526

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: yarn lint-python

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

steps:
- uses: actions/checkout@v4
Expand All @@ -91,7 +91,7 @@ jobs:
SECRET_KEY=insecure_secret_key coverage run --source=. -m unittest discover tests

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
flags: python

Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# 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
ADD requirements.txt /tmp/requirements.txt
RUN pip3 config set global.disable-pip-version-check true
Expand All @@ -11,7 +11,7 @@ RUN --mount=type=cache,target=/root/.cache/pip pip3 install --user --requirement

# Build stage: Install yarn dependencies
# ===
FROM node:20 AS yarn-dependencies
FROM node:22 AS yarn-dependencies
WORKDIR /srv
ADD package.json .
RUN --mount=type=cache,target=/usr/local/share/.cache/yarn yarn install
Expand All @@ -35,7 +35,7 @@ RUN yarn run build-css

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

# Install python and import python dependencies
RUN apt-get update && apt-get install --no-install-recommends --yes python3-setuptools python3-lib2to3 python3-pkg-resources
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@
"test": "yarn run lint-scss && yarn run lint-python && yarn run test-python"
},
"dependencies": {
"@canonical/cookie-policy": "3.5.0",
"@canonical/cookie-policy": "3.6.4",
"@canonical/discourse-rad-parser": "1.0.2",
"@canonical/global-nav": "3.6.4",
"autoprefixer": "10.4.19",
"concurrently": "8.2.2",
"postcss": "8.4.38",
"autoprefixer": "10.4.20",
"concurrently": "9.0.1",
"postcss": "8.4.47",
"postcss-cli": "11.0.0",
"prettier": "3.2.5",
"sass": "1.75.0",
"stylelint": "16.3.1",
"prettier": "3.3.3",
"sass": "1.80.5",
"stylelint": "16.10.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-recommended-scss": "14.0.0",
"stylelint-config-recommended-scss": "14.1.0",
"stylelint-order": "6.0.4",
"stylelint-prettier": "5.0.0",
"vanilla-framework": "4.14.0",
"stylelint-prettier": "5.0.2",
"vanilla-framework": "4.18.0",
"watch-cli": "0.2.3"
},
"devDependencies": {
Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
canonicalwebteam.flask-base==2.0.0
canonicalwebteam.blog==6.4.2
canonicalwebteam.yaml-responses==1.2.0
canonicalwebteam.discourse==5.6.1
canonicalwebteam.search==2.1.0
canonicalwebteam.discourse==5.7.3
canonicalwebteam.search==2.1.1
canonicalwebteam.templatefinder==1.0.0
canonicalwebteam.image-template==1.3.1
black==24.3.0
flake8==7.0.0
black==24.10.0
flake8==7.1.1
requests==2.31.0
semver==3.0.2
cachetools==5.3.3
cachetools==5.5.0
flask-cors==4.0.0
Loading
Loading