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 Oct 17, 2024
1 parent 812fa65 commit f803be3
Show file tree
Hide file tree
Showing 6 changed files with 377 additions and 357 deletions.
10 changes: 5 additions & 5 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@v3
- uses: actions/checkout@v4

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

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

- name: Install dotrun
run: sudo pip3 install dotrun
Expand All @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Install python dependencies
run: |
Expand All @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Install dotrun
run: sudo pip3 install dotrun
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:

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

- 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:jammy AS python-dependencies
FROM ubuntu:noble AS python-dependencies
RUN apt-get update && apt-get install --no-install-recommends --yes python3 python3-setuptools python3-pip
ADD 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:19 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 @@ -29,7 +29,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 python3-setuptools ca-certificates libsodium-dev python3-lib2to3
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.update
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:experimental

FROM ubuntu:focal
FROM ubuntu:noble

# Install required system packages for our CronJob
RUN apt-get update && apt-get install --yes --no-install-recommends python3-pip python3-setuptools python3-dev python3-wheel
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"dependencies": {
"@canonical/react-components": "0.42.0",
"autoprefixer": "10.4.13",
"clsx": "^1.2.1",
"concurrently": "^7.1.0",
"clsx": "^2.0.0",
"concurrently": "^9.0.0",
"focus-trap-react": "10.0.2",
"formik": "^2.2.9",
"qs": "^6.11.0",
Expand All @@ -31,18 +31,18 @@
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.0",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^3.0.0",
"@vitejs/plugin-react": "^4.0.0",
"babel-jest": "^29.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"typescript": "^4.6.4",
"typescript": "^5.0.0",
"vite": "^4.0.0"
}
}
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ django-openid-auth==0.17
Flask-OpenID==1.3.0
beautifulsoup4==4.11.1
python-dateutil==2.8.2
lxml==4.9.2
lxml==5.3.0
cachetools==5.3.0
black==23.1.0
flake8==6.0.0
tenacity==8.2.3
flake8==7.1.1
tenacity==9.0.0
Loading

0 comments on commit f803be3

Please sign in to comment.