Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all dependencies #14

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,32 +9,32 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v3
with:
config-file: ./.github/codeql.yml
languages: javascript
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v3
lighthouse:
name: Lighthouse
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '16'
- uses: actions/cache@v2
- uses: actions/cache@v4
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@v4
with:
path: .cache/webpack
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Build website
run: npm run build
- name: Run Lighthouse
uses: treosh/lighthouse-ci-action@v9
uses: treosh/lighthouse-ci-action@v12
with:
configPath: ./lighthouserc.json
uploadArtifacts: true
4 changes: 2 additions & 2 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Ensure we are checked out on the master branch
ref: master
# Ensure custom credentials are used when pushing
persist-credentials: false
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '16'
- name: Update simple-icons
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ jobs:
name: Publish Website
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '16'
- uses: actions/cache@v2
- uses: actions/cache@v4
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@v4
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.6.3
with:
branch: gh-pages
folder: _site
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '16'
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -27,26 +27,26 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '16'
- uses: actions/cache@v2
- uses: actions/cache@v4
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@v4
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@v4
with:
path: .cache/jest
key: ${{ runner.os }}-jest-${{ hashFiles('package-lock.json') }}-${{ github.run_number }}
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Run end-to-end tests
run: npm run test:e2e -- --runInBand
- name: Upload test screenshots
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: preview
path: tests/_artifacts/*.png
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:17-alpine
FROM node:20-alpine

# Install system dependencies and development tools
RUN apk add --no-cache \
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,32 +25,32 @@
"test:unit": "cross-env TEST_ENV=unit jest"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/preset-env": "7.16.11",
"autoprefixer": "10.4.2",
"babel-jest": "27.5.1",
"copy-webpack-plugin": "10.2.4",
"@babel/core": "7.24.9",
"@babel/preset-env": "7.25.0",
"autoprefixer": "10.4.19",
"babel-jest": "29.7.0",
"copy-webpack-plugin": "12.0.2",
"cross-env": "7.0.3",
"css-loader": "6.7.0",
"css-minimizer-webpack-plugin": "3.4.1",
"css-loader": "7.1.2",
"css-minimizer-webpack-plugin": "7.0.0",
"get-relative-luminance": "1.0.0",
"html-webpack-plugin": "5.5.0",
"husky": "7.0.4",
"html-webpack-plugin": "5.6.0",
"husky": "9.1.3",
"is-ci": "3.0.1",
"jest": "27.5.1",
"jest-puppeteer": "6.1.0",
"mini-css-extract-plugin": "2.6.0",
"npm-run-all": "4.1.5",
"jest": "29.7.0",
"jest-puppeteer": "10.0.1",
"mini-css-extract-plugin": "2.9.0",
"npm-run-all2": "5.0.0",
"postcss": "8.4.8",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-loader": "6.2.1",
"prettier": "2.5.1",
"postcss-loader": "8.1.1",
"prettier": "3.3.3",
"pug": "3.0.2",
"pug-loader": "2.4.0",
"puppeteer": "13.4.1",
"puppeteer": "22.14.0",
"serve": "14.2.3",
"webpack": "5.70.0",
"webpack-cli": "4.9.2"
"webpack-cli": "5.1.4"
},
"engine": {
"node": ">=16.0.0"
Expand Down
Loading