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 Nov 29, 2024
1 parent 60782ce commit 8cda35d
Show file tree
Hide file tree
Showing 5 changed files with 505 additions and 616 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linkchecker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ env:
jobs:
run-linkchecker:
if: github.repository == 'canonical-web-and-design/cn.ubuntu.com'
runs-on: ubuntu-18.04
runs-on: ubuntu-24.04

steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build Docker image
run: DOCKER_BUILDKIT=1 docker build --build-arg BUILD_ID=test --tag cn.ubuntu.com .
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build image
run: DOCKER_BUILDKIT=1 docker build --tag cn-ubuntu-com .
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install dependencies
run: yarn install --immutable
Expand All @@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install node dependencies
run: yarn install --immutable
Expand All @@ -69,10 +69,10 @@ jobs:
run: yarn lint-python

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

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install requirements
run: |
Expand All @@ -97,7 +97,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Yarn install
run: yarn install
Expand All @@ -112,7 +112,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Yarn install
run: yarn install
Expand All @@ -124,7 +124,7 @@ jobs:
run: yarn lint-js

lint-jinja:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand All @@ -139,7 +139,7 @@ jobs:
- name: Get changed HTML files in the templates folder
id: changed-files
uses: tj-actions/changed-files@v43
uses: tj-actions/changed-files@v45
with:
files: templates/**

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 git
ADD requirements.txt /tmp/requirements.txt
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:23 AS yarn-dependencies
WORKDIR /srv
ADD package.json yarn.lock .
RUN --mount=type=cache,target=/usr/local/share/.cache/yarn yarn install
Expand All @@ -31,7 +31,7 @@ RUN yarn run build

# 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 ca-certificates libsodium-dev
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@
"autoprefixer": "10.4.13",
"babel-jest": "29.3.1",
"babel-loader": "9.1.2",
"concurrently": "7.6.0",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"concurrently": "9.1.0",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.3.1",
"postcss": "8.4.21",
"postcss-cli": "10.1.0",
"prettier": "2.8.2",
"postcss-cli": "11.0.0",
"prettier": "3.4.1",
"sass": "1.57.1",
"stylelint": "14.16.1",
"stylelint": "16.11.0",
"stylelint-config-prettier": "9.0.4",
"stylelint-config-standard-scss": "6.1.0",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-order": "6.0.1",
"stylelint-prettier": "2.0.0",
"stylelint-scss": "4.3.0",
"stylelint-prettier": "5.0.2",
"stylelint-scss": "6.10.0",
"watch-cli": "0.2.3",
"webpack": "5.76.0",
"webpack-cli": "5.0.1"
Expand Down
Loading

0 comments on commit 8cda35d

Please sign in to comment.