Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e1f55b8

Browse files
authoredAug 28, 2024··
Update all dependencies
1 parent 9e704e0 commit e1f55b8

File tree

5 files changed

+409
-702
lines changed

5 files changed

+409
-702
lines changed
 

‎.github/workflows/master.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616

1717
- name: Build image
1818
run: DOCKER_BUILDKIT=1 docker build --tag pythonoperatorframework-io .
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727

2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030

3131
- name: Install dotrun
3232
run: |
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646

4747
steps:
48-
- uses: actions/checkout@v3
48+
- uses: actions/checkout@v4
4949

5050
- name: Install node dependencies
5151
run: yarn install --immutable
@@ -61,7 +61,7 @@ jobs:
6161
runs-on: ubuntu-latest
6262

6363
steps:
64-
- uses: actions/checkout@v3
64+
- uses: actions/checkout@v4
6565

6666
- name: Install dependencies
6767
run: yarn install --immutable
@@ -73,7 +73,7 @@ jobs:
7373
runs-on: ubuntu-latest
7474

7575
steps:
76-
- uses: actions/checkout@v3
76+
- uses: actions/checkout@v4
7777

7878
- name: Install requirements
7979
run: |

‎.github/workflows/pr.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313

1414
- name: Build image
1515
run: DOCKER_BUILDKIT=1 docker build --tag pythonoperatorframework-io .
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727

2828
- name: Install Dotrun
2929
uses: canonical/install-dotrun@main
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242

4343
steps:
44-
- uses: actions/checkout@v3
44+
- uses: actions/checkout@v4
4545

4646
- name: Install node dependencies
4747
run: yarn install --immutable
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ubuntu-latest
5858

5959
steps:
60-
- uses: actions/checkout@v3
60+
- uses: actions/checkout@v4
6161

6262
- name: Install dependencies
6363
run: yarn install --immutable
@@ -69,7 +69,7 @@ jobs:
6969
runs-on: ubuntu-latest
7070

7171
steps:
72-
- uses: actions/checkout@v3
72+
- uses: actions/checkout@v4
7373

7474
- name: Install requirements
7575
run: |
@@ -94,7 +94,7 @@ jobs:
9494

9595
steps:
9696
- name: Checkout
97-
uses: actions/checkout@v3
97+
uses: actions/checkout@v4
9898

9999
- name: Check inclusive naming
100100
uses: canonical-web-and-design/inclusive-naming@main

‎Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Build stage: Install python dependencies
44
# ===
5-
FROM ubuntu:jammy AS python-dependencies
5+
FROM ubuntu:noble AS python-dependencies
66
RUN apt-get update && apt-get install --no-install-recommends --yes python3-pip python3-setuptools build-essential python3-dev
77
ADD requirements.txt /tmp/requirements.txt
88
RUN pip3 config set global.disable-pip-version-check true
@@ -11,7 +11,7 @@ RUN --mount=type=cache,target=/root/.cache/pip pip3 install --user --requirement
1111

1212
# Build stage: Install yarn dependencies
1313
# ===
14-
FROM node:19 AS yarn-dependencies
14+
FROM node:22 AS yarn-dependencies
1515
WORKDIR /srv
1616
ADD package.json .
1717
RUN --mount=type=cache,target=/usr/local/share/.cache/yarn yarn install
@@ -25,7 +25,7 @@ RUN yarn run build
2525

2626
# Build the production image
2727
# ===
28-
FROM ubuntu:jammy
28+
FROM ubuntu:noble
2929

3030
# Install python and import python dependencies
3131
RUN apt-get update && apt-get install --no-install-recommends --yes python3 python3-setuptools python3-pip build-essential python3-dev

‎package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515
},
1616
"dependencies": {
1717
"autoprefixer": "10.4.13",
18-
"concurrently": "7.6.0",
18+
"concurrently": "8.2.2",
1919
"postcss": "8.4.31",
20-
"postcss-cli": "10.1.0",
21-
"prettier": "2.8.1",
20+
"postcss-cli": "11.0.0",
21+
"prettier": "3.3.3",
2222
"sass": "1.57.1",
23-
"stylelint": "14.16.1",
23+
"stylelint": "16.9.0",
2424
"stylelint-config-prettier": "9.0.4",
25-
"stylelint-config-recommended-scss": "8.0.0",
26-
"stylelint-order": "5.0.0",
27-
"stylelint-prettier": "2.0.0",
25+
"stylelint-config-recommended-scss": "14.1.0",
26+
"stylelint-order": "6.0.4",
27+
"stylelint-prettier": "5.0.2",
2828
"vanilla-framework": "4.5.0",
2929
"watch-cli": "0.2.3"
3030
}

‎yarn.lock

+388-681
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.