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 Jun 3, 2023
1 parent b909a41 commit 4bea851
Show file tree
Hide file tree
Showing 6 changed files with 209 additions and 126 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs-links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Install linkchecker
run: sudo pip install LinkChecker
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Build image
run: DOCKER_BUILDKIT=1 docker build --tag maas-io .
Expand All @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Install Dotrun
uses: canonical/install-dotrun@main
Expand All @@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-latest

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

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

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

- name: Install node dependencies
run: yarn install --immutable
Expand All @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-20.04

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

- name: Install requirements
run: |
Expand All @@ -97,7 +97,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Check inclusive naming
uses: canonical-web-and-design/inclusive-naming@main
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:focal AS python-dependencies
FROM ubuntu:jammy AS python-dependencies
RUN apt-get update && apt-get install --no-install-recommends --yes python3-pip python3-setuptools
COPY requirements.txt /tmp/requirements.txt
ARG DISABLE_PIP_VERSION_CHECK=1
RUN --mount=type=cache,target=/root/.cache/pip pip3 install --user --requirement /tmp/requirements.txt

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

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

ENV LANG C.UTF-8
WORKDIR /srv
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"author": "Canonical webteam",
"license": "LGPL v3",
"devDependencies": {
"stylelint": "14.16.1",
"stylelint-config-recommended-scss": "5.0.2",
"stylelint-order": "5.0.0"
"stylelint": "15.6.3",
"stylelint-config-recommended-scss": "12.0.0",
"stylelint-order": "6.0.3"
},
"dependencies": {
"autoprefixer": "10.4.13",
Expand All @@ -35,7 +35,7 @@
"@canonical/latest-news": "1.4.1",
"@canonical/discourse-rad-parser": "1.0.1",
"postcss": "8.4.20",
"postcss-cli": "9.1.0",
"postcss-cli": "10.1.0",
"sass": "1.57.1",
"vanilla-framework": "3.14.0",
"venobox": "2.0.4"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ canonicalwebteam.templatefinder==1.0.0
canonicalwebteam.search==1.3.0
canonicalwebteam.image-template==1.3.1
feedparser==6.0.10
requests-cache==0.9.7
requests-cache==1.0.1
lxml==4.9.2
cchardet==2.1.7; platform_machine != 'aarch64'
pyyaml==6.0
Loading

0 comments on commit 4bea851

Please sign in to comment.