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 Sep 23, 2024
1 parent 1749b0d commit 8c3b009
Show file tree
Hide file tree
Showing 5 changed files with 732 additions and 810 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs-links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout main
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install linkchecker
run: sudo pip install LinkChecker
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
run-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build image
run: DOCKER_BUILDKIT=1 docker build --tag microk8s-io .
- name: Run image
Expand All @@ -20,7 +20,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 @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Install dependencies
run: yarn install --immutable
Expand All @@ -46,10 +46,10 @@ jobs:
run: yarn lint-scss

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

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

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

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

- name: Install dependencies
run: yarn install --immutable
Expand All @@ -89,7 +89,7 @@ jobs:

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

- name: woke
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: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 --production
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
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"@canonical/global-nav": "3.6.4",
"autoprefixer": "10.4.13",
"babel-loader": "9.1.2",
"expose-loader": "4.0.0",
"expose-loader": "5.0.0",
"postcss": "8.4.21",
"postcss-cli": "10.1.0",
"postcss-cli": "11.0.0",
"sass": "1.57.1",
"vanilla-framework": "4.16.0",
"webpack-cli": "5.0.1"
Expand All @@ -37,15 +37,15 @@
"@babel/preset-env": "7.20.2",
"babel-eslint": "10.1.0",
"babel-jest": "29.3.1",
"concurrently": "7.6.0",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"concurrently": "9.0.1",
"eslint": "9.11.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.3.1",
"lint-staged": "13.1.0",
"prettier": "2.8.2",
"stylelint": "14.16.1",
"stylelint-config-standard-scss": "5.0.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"stylelint": "16.9.0",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-order": "6.0.1",
"watch-cli": "0.2.3",
"webpack": "5.76.0"
Expand Down
Loading

0 comments on commit 8c3b009

Please sign in to comment.