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] committed Apr 26, 2024
1 parent 7c629af commit 14c4384
Show file tree
Hide file tree
Showing 4 changed files with 492 additions and 682 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ on: pull_request

jobs:
run-image:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build image
run: DOCKER_BUILDKIT=1 docker build --tag netplan-io .
Expand All @@ -17,10 +17,10 @@ jobs:
curl --head --fail --retry-delay 5 --retry 10 --retry-connrefused http://localhost
run-dotrun:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

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

- name: Install dotrun
uses: canonical/install-dotrun@main
Expand All @@ -36,10 +36,10 @@ jobs:
dotrun & curl --head --fail --retry-delay 1 --retry 30 --retry-connrefused http://localhost:8024
lint-scss:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

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

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

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

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

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

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 @@ -88,11 +88,11 @@ jobs:
bash <(curl -s https://codecov.io/bash) -cF python
inclusive-naming-check:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

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
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
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,19 @@
"babel-loader": "^9.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "6.24.1",
"concurrently": "7.6.0",
"concurrently": "8.2.2",
"esbuild": "0.14.10",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"eslint": "9.1.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"lazysizes": "5.3.2",
"postcss": "8.4.5",
"postcss-cli": "10.1.0",
"prettier": "2.0.2",
"postcss-cli": "11.0.0",
"prettier": "3.2.5",
"sass": "1.46.0",
"stylelint": "14.16.1",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-order": "5.0.0",
"stylelint": "16.4.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "6.0.4",
"watch-cli": "0.2.3"
}
}
Loading

0 comments on commit 14c4384

Please sign in to comment.