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 May 2, 2022
1 parent 8626f82 commit de17b9a
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 22 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/analysis.yml
Expand Up @@ -11,12 +11,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
config-file: ./.github/codeql.yml
languages: javascript
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
lighthouse:
name: Lighthouse
runs-on: ubuntu-latest
Expand All @@ -27,14 +27,14 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: '16'
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Cache build
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .cache/webpack
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Expand Up @@ -16,14 +16,14 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: '16'
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Cache build
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .cache/webpack
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -36,7 +36,7 @@ jobs:
npm run build
sed -i "s/#DEVELOPMENT_BUILD#/$(git rev-parse --short ${{ github.sha }})/g" ./_site/script.js
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.2.5
uses: JamesIves/github-pages-deploy-action@v4.3.3
with:
branch: gh-pages
folder: _site
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/verify.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: '16'
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -32,21 +32,21 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: '16'
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Cache build
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .cache/webpack
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-
- name: Cache Jest
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .cache/jest
key: ${{ runner.os }}-jest-${{ hashFiles('package-lock.json') }}-${{ github.run_number }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,4 +1,4 @@
FROM node:17-alpine
FROM node:18-alpine

# Install system dependencies and development tools
RUN apk add --no-cache \
Expand Down
20 changes: 10 additions & 10 deletions package.json
Expand Up @@ -25,31 +25,31 @@
"test:unit": "cross-env TEST_ENV=unit jest"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/preset-env": "7.16.11",
"@babel/core": "7.17.10",
"@babel/preset-env": "7.17.10",
"anywhere": "1.5.0",
"autoprefixer": "10.4.2",
"babel-jest": "27.5.1",
"autoprefixer": "10.4.7",
"babel-jest": "28.0.3",
"copy-webpack-plugin": "10.2.4",
"cross-env": "7.0.3",
"css-loader": "6.7.0",
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "3.4.1",
"get-relative-luminance": "1.0.0",
"html-webpack-plugin": "5.5.0",
"husky": "7.0.4",
"is-ci": "3.0.1",
"jest": "27.5.1",
"jest": "28.0.3",
"jest-puppeteer": "6.1.0",
"mini-css-extract-plugin": "2.6.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.8",
"postcss": "8.4.13",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-loader": "6.2.1",
"prettier": "2.5.1",
"prettier": "2.6.2",
"pug": "3.0.2",
"pug-loader": "2.4.0",
"puppeteer": "13.4.1",
"webpack": "5.70.0",
"puppeteer": "13.7.0",
"webpack": "5.72.0",
"webpack-cli": "4.9.2"
},
"engine": {
Expand Down

0 comments on commit de17b9a

Please sign in to comment.