Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jan 3, 2024
1 parent ba71e98 commit 8863722
Show file tree
Hide file tree
Showing 14 changed files with 2,587 additions and 3,471 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/a11y.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

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

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.10"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ceph-docs-links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Install linkchecker
run: sudo pip install LinkChecker
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/core-docs-links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Install linkchecker
run: sudo pip install LinkChecker
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cypress-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:

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

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.10"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kubernetes-docs-links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Install linkchecker
run: sudo pip install LinkChecker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Install linkchecker
run: sudo pip install LinkChecker
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openstack-charm-guide-docs-links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

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

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


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

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

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

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

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

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

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

- name: Install dependencies
run: yarn install --immutable
Expand All @@ -69,7 +69,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 @@ -86,7 +86,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Install konf
run: |
Expand All @@ -108,7 +108,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # fetch all history for codecov

Expand Down Expand Up @@ -141,11 +141,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # fetch all history for codecov

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16

Expand All @@ -165,7 +165,7 @@ jobs:
runs-on: ubuntu-latest

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

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

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

- name: Install dependencies
run: yarn install --immutable
Expand All @@ -192,7 +192,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
2 changes: 1 addition & 1 deletion .github/workflows/rebase.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
)
steps:
- name: Checkout the latest code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.REBASE_TOKEN }}
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server-docs-links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Install linkchecker
run: sudo pip install LinkChecker
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN --mount=type=cache,target=/root/.cache/pip pip3 install --user --requirement

# Build stage: Install yarn dependencies
# ===
FROM node:18 AS yarn-dependencies
FROM node:21 AS yarn-dependencies
WORKDIR /srv
ADD package.json yarn.lock .
RUN --mount=type=cache,target=/usr/local/share/.cache/yarn yarn install --production
Expand Down
86 changes: 43 additions & 43 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,84 +43,84 @@
"@babel/preset-env": "7.16.7",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.16.7",
"@testing-library/cypress": "8.0.0",
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.0.0",
"@testing-library/react-hooks": "7.0.2",
"@testing-library/user-event": "13.2.1",
"@testing-library/cypress": "10.0.1",
"@testing-library/dom": "9.3.3",
"@testing-library/jest-dom": "6.2.0",
"@testing-library/react": "14.1.2",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.5.2",
"@types/enzyme": "3.10.11",
"@types/jest": "26.0.24",
"@types/jest": "29.5.11",
"@types/lodash": "4.14.175",
"@types/react-google-recaptcha": "2.1.2",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@typescript-eslint/parser": "6.17.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.6",
"axe-core": "4.3.5",
"babel-jest": "26.6.3",
"babel-loader": "8.2.3",
"concurrently": "6.5.1",
"babel-jest": "29.7.0",
"babel-loader": "9.1.3",
"concurrently": "8.2.2",
"csstype": "3.0.8",
"cypress": "8.7.0",
"cypress-axe": "0.14.0",
"cypress": "13.6.2",
"cypress-axe": "1.5.0",
"enzyme": "3.11.0",
"eslint": "7.32.0",
"eslint-config-prettier": "7.2.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-react": "7.28.0",
"exports-loader": "2.0.0",
"fishery": "1.4.0",
"exports-loader": "4.0.0",
"fishery": "2.2.2",
"full-icu": "1.4.0",
"jest": "26.6.3",
"jest": "29.7.0",
"jest-fetch-mock": "3.0.3",
"prettier": "2.2.1",
"puppeteer": "10.4.0",
"react-test-renderer": "17.0.2",
"stylelint": "13.13.1",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "20.0.0",
"stylelint-order": "4.1.0",
"stylelint-prettier": "1.2.0",
"stylelint-scss": "3.21.0",
"prettier": "3.1.1",
"puppeteer": "21.6.1",
"react-test-renderer": "18.2.0",
"stylelint": "16.1.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-standard": "36.0.0",
"stylelint-order": "6.0.4",
"stylelint-prettier": "5.0.0",
"stylelint-scss": "6.0.0",
"watch-cli": "0.2.3"
},
"dependencies": {
"@canonical/cookie-policy": "3.5.0",
"@canonical/global-nav": "^2.7.0",
"@canonical/latest-news": "1.5.0",
"@canonical/react-components": "^0.38.0",
"@reduxjs/toolkit": "1.7.1",
"@sentry/react": "6.11.0",
"@sentry/tracing": "6.11.0",
"@stripe/react-stripe-js": "1.7.0",
"@stripe/stripe-js": "1.22.0",
"@reduxjs/toolkit": "2.0.1",
"@sentry/react": "7.91.0",
"@sentry/tracing": "7.91.0",
"@stripe/react-stripe-js": "2.4.0",
"@stripe/stripe-js": "2.2.2",
"autoprefixer": "10.4.1",
"date-fns": "2.28.0",
"date-fns-tz": "1.3.4",
"date-fns": "3.0.6",
"date-fns-tz": "2.0.0",
"esbuild": "0.14.10",
"flickity": "^3.0.0",
"formik": "2.2.9",
"intl-tel-input": "17.0.18",
"intl-tel-input": "18.3.4",
"postcss": "8.4.31",
"postcss-cli": "8.3.1",
"postcss-cli": "11.0.0",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-google-recaptcha": "2.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-google-recaptcha": "3.1.0",
"react-query": "3.34.7",
"react-router-dom": "^6.8.0",
"react-useportal": "1.0.16",
"sass": "1.45.2",
"smartquotes": "2.3.2",
"typescript": "4.5.4",
"typescript": "5.3.3",
"url-polyfill": "1.1.12",
"url-search-params-polyfill": "8.1.1",
"vanilla-framework": "4.5.1",
"yup": "0.32.11"
"yup": "1.3.3"
},
"resolutions": {
"lodash": "4.17.21",
"minimatch": "3.0.5"
"minimatch": "9.0.3"
},
"jest": {
"moduleDirectories": [
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ canonicalwebteam.templatefinder==1.0.0
canonicalwebteam.image-template==1.3.1
canonicalwebteam.discourse==5.4.7
python-dateutil==2.8.2
pytz==2022.7.1
pytz==2023.3.post1
maxminddb-geolite2==2018.703
Flask-OpenID==1.3.0
feedgen==0.9.0
feedgen==1.0.0
feedparser==6.0.10
pymacaroons==0.13.0
requests==2.28.2
marshmallow==3.19.0
mistune==0.8.4
mistune==3.0.2
pyyaml==6.0
ubuntu-release-info==21.1
macaroonbakery==1.3.1
Expand Down
Loading

0 comments on commit 8863722

Please sign in to comment.