Skip to content

Commit bce986c

Browse files
committed
Update all dependencies
1 parent 8626f82 commit bce986c

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

.github/workflows/analysis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
- name: Checkout repository
1212
uses: actions/checkout@v3
1313
- name: Initialize CodeQL
14-
uses: github/codeql-action/init@v1
14+
uses: github/codeql-action/init@v2
1515
with:
1616
config-file: ./.github/codeql.yml
1717
languages: javascript
1818
- name: Perform CodeQL Analysis
19-
uses: github/codeql-action/analyze@v1
19+
uses: github/codeql-action/analyze@v2
2020
lighthouse:
2121
name: Lighthouse
2222
runs-on: ubuntu-latest
@@ -27,14 +27,14 @@ jobs:
2727
uses: actions/setup-node@v3
2828
with:
2929
node-version: '16'
30-
- uses: actions/cache@v2
30+
- uses: actions/cache@v3
3131
with:
3232
path: ~/.npm
3333
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
3434
restore-keys: |
3535
${{ runner.os }}-node-
3636
- name: Cache build
37-
uses: actions/cache@v2
37+
uses: actions/cache@v3
3838
with:
3939
path: .cache/webpack
4040
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }}

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
uses: actions/setup-node@v3
1717
with:
1818
node-version: '16'
19-
- uses: actions/cache@v2
19+
- uses: actions/cache@v3
2020
with:
2121
path: ~/.npm
2222
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
2323
restore-keys: |
2424
${{ runner.os }}-node-
2525
- name: Cache build
26-
uses: actions/cache@v2
26+
uses: actions/cache@v3
2727
with:
2828
path: .cache/webpack
2929
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }}
@@ -36,7 +36,7 @@ jobs:
3636
npm run build
3737
sed -i "s/#DEVELOPMENT_BUILD#/$(git rev-parse --short ${{ github.sha }})/g" ./_site/script.js
3838
- name: Deploy
39-
uses: JamesIves/github-pages-deploy-action@v4.2.5
39+
uses: JamesIves/github-pages-deploy-action@v4.3.3
4040
with:
4141
branch: gh-pages
4242
folder: _site

.github/workflows/verify.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/setup-node@v3
1313
with:
1414
node-version: '16'
15-
- uses: actions/cache@v2
15+
- uses: actions/cache@v3
1616
with:
1717
path: ~/.npm
1818
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -32,21 +32,21 @@ jobs:
3232
uses: actions/setup-node@v3
3333
with:
3434
node-version: '16'
35-
- uses: actions/cache@v2
35+
- uses: actions/cache@v3
3636
with:
3737
path: ~/.npm
3838
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
3939
restore-keys: |
4040
${{ runner.os }}-node-
4141
- name: Cache build
42-
uses: actions/cache@v2
42+
uses: actions/cache@v3
4343
with:
4444
path: .cache/webpack
4545
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }}
4646
restore-keys: |
4747
${{ runner.os }}-build-
4848
- name: Cache Jest
49-
uses: actions/cache@v2
49+
uses: actions/cache@v3
5050
with:
5151
path: .cache/jest
5252
key: ${{ runner.os }}-jest-${{ hashFiles('package-lock.json') }}-${{ github.run_number }}

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:17-alpine
1+
FROM node:18-alpine
22

33
# Install system dependencies and development tools
44
RUN apk add --no-cache \

package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -25,31 +25,31 @@
2525
"test:unit": "cross-env TEST_ENV=unit jest"
2626
},
2727
"devDependencies": {
28-
"@babel/core": "7.17.5",
28+
"@babel/core": "7.17.9",
2929
"@babel/preset-env": "7.16.11",
3030
"anywhere": "1.5.0",
31-
"autoprefixer": "10.4.2",
32-
"babel-jest": "27.5.1",
31+
"autoprefixer": "10.4.5",
32+
"babel-jest": "28.0.1",
3333
"copy-webpack-plugin": "10.2.4",
3434
"cross-env": "7.0.3",
35-
"css-loader": "6.7.0",
35+
"css-loader": "6.7.1",
3636
"css-minimizer-webpack-plugin": "3.4.1",
3737
"get-relative-luminance": "1.0.0",
3838
"html-webpack-plugin": "5.5.0",
3939
"husky": "7.0.4",
4040
"is-ci": "3.0.1",
41-
"jest": "27.5.1",
41+
"jest": "28.0.1",
4242
"jest-puppeteer": "6.1.0",
4343
"mini-css-extract-plugin": "2.6.0",
4444
"npm-run-all": "4.1.5",
45-
"postcss": "8.4.8",
45+
"postcss": "8.4.12",
4646
"postcss-flexbugs-fixes": "5.0.2",
4747
"postcss-loader": "6.2.1",
48-
"prettier": "2.5.1",
48+
"prettier": "2.6.2",
4949
"pug": "3.0.2",
5050
"pug-loader": "2.4.0",
51-
"puppeteer": "13.4.1",
52-
"webpack": "5.70.0",
51+
"puppeteer": "13.6.0",
52+
"webpack": "5.72.0",
5353
"webpack-cli": "4.9.2"
5454
},
5555
"engine": {

0 commit comments

Comments
 (0)