Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 17, 2023
1 parent e46721b commit 22c1f95
Show file tree
Hide file tree
Showing 4 changed files with 1,500 additions and 3,579 deletions.
20 changes: 10 additions & 10 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-20.04

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

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

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

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

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

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

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

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

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

- name: Install requirements
run: |
Expand All @@ -94,7 +94,7 @@ jobs:
check-build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: yarn

Expand All @@ -104,7 +104,7 @@ jobs:
check-prettier:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install dependencies
run: yarn
Expand All @@ -114,7 +114,7 @@ jobs:
js-lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install dependencies
run: yarn
Expand All @@ -126,7 +126,7 @@ jobs:
runs-on: ubuntu-20.04

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

- name: Install dependencies
run: yarn install --immutable
Expand All @@ -144,7 +144,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
8 changes: 4 additions & 4 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: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
ADD requirements.txt /tmp/requirements.txt
RUN pip3 config set global.disable-pip-version-check true
Expand All @@ -11,15 +11,15 @@ RUN --mount=type=cache,target=/root/.cache/pip pip3 install --user --requirement

# Build stage: Install yarn dependencies
# ===
FROM node:16 AS yarn-dependencies
FROM node:19 AS yarn-dependencies
WORKDIR /srv
ADD package.json .
RUN --mount=type=cache,target=/usr/local/share/.cache/yarn yarn install --production


# Build stage: Build dashboard
# ===
FROM ubuntu:focal AS build-dashboard
FROM ubuntu:jammy AS build-dashboard
WORKDIR /srv/build
# extract the dashboard archive
ADD *.tar.bz2 .
Expand All @@ -44,7 +44,7 @@ RUN yarn run build-css

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

# Python dependencies
ENV LANG C.UTF-8
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,31 +31,31 @@
"@canonical/cookie-policy": "3.4.0",
"@canonical/global-nav": "2.7.0",
"@canonical/latest-news": "1.4.1",
"@sentry/browser": "5.30.0",
"@sentry/browser": "7.31.1",
"autoprefixer": "10.4.12",
"babel-loader": "8.2.5",
"babel-loader": "9.1.2",
"braces": "3.0.2",
"concurrently": "5.3.0",
"concurrently": "7.6.0",
"instant.page": "5.1.1",
"postcss": "8.4.17",
"postcss-cli": "8.3.1",
"postcss-cli": "10.1.0",
"sass": "1.55.0",
"vanilla-framework": "2.37.1",
"watch-cli": "0.2.3",
"webpack": "5.74.0",
"webpack-cli": "4.10.0"
"webpack-cli": "5.0.1"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "7.2.0",
"eslint": "8.32.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.26.0",
"jest": "26.6.3",
"jest": "29.3.1",
"prettier": "2.7.1",
"stylelint": "13.13.1",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "20.0.0",
"stylelint-order": "4.1.0",
"stylelint": "14.16.1",
"stylelint-config-prettier": "9.0.4",
"stylelint-config-standard": "29.0.0",
"stylelint-order": "6.0.1",
"terser-webpack-plugin": "5.3.6"
},
"resolutions": {
Expand Down
Loading

0 comments on commit 22c1f95

Please sign in to comment.