Skip to content

Commit

Permalink
chore(deps): update dependencies (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
sidvishnoi authored Apr 10, 2024
1 parent f311679 commit 91a0055
Show file tree
Hide file tree
Showing 5 changed files with 196 additions and 128 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: pnpm
Expand Down
12 changes: 6 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ inputs:
required: false
VALIDATE_MARKUP:
description: Validate markup
default: true
default: "true"
VALIDATE_WEBIDL:
description: Validate Web IDL
default: true
default: "true"
VALIDATE_PUBRULES:
description: Validate against W3C Publication Rules
default: false
default: "false"
GH_PAGES_BRANCH:
description: Provide a branch name to deploy to GitHub pages.
GH_PAGES_BUILD_OVERRIDE:
Expand Down Expand Up @@ -57,10 +57,10 @@ runs:
echo "action_path=${action_path}" >> "$GITHUB_OUTPUT"
shell: bash

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
with:
package_json_file: ${{ steps.action_relative_path.outputs.action_path }}/package.json
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version-file: ${{ steps.action_relative_path.outputs.action_path }}/.nvmrc
- name: Set up action
Expand Down Expand Up @@ -105,7 +105,7 @@ runs:

- name: Upload Build Artifacts
id: upload-build-artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: |-
${{ steps.build.outputs.gh && fromJson(steps.build.outputs.gh).dest }}
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,30 @@
"@actions/core": "^1.10.1",
"finalhandler": "^1.2.0",
"node-fetch": "^2.7.0",
"puppeteer": "^21",
"puppeteer": "^22",
"serve-static": "^1.15.0",
"split2": "^4.2.0",
"subresources": "^1.3.2"
},
"engines": {
"node": "^20"
},
"packageManager": "pnpm@8.7.5",
"packageManager": "pnpm@8.15.6",
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"dev": "tsc -p tsconfig.json -w",
"lint": "prettier . --check"
},
"devDependencies": {
"@types/finalhandler": "^1.2.1",
"@types/node": "^20.8.6",
"@types/node-fetch": "^2.6.6",
"@types/serve-static": "^1.15.3",
"@types/split2": "^4.2.1",
"typescript": "^5.2.2"
"@types/finalhandler": "^1.2.3",
"@types/node": "^20.12.6",
"@types/node-fetch": "^2.6.11",
"@types/serve-static": "^1.15.7",
"@types/split2": "^4.2.3",
"typescript": "^5.4.4"
},
"optionalDependencies": {
"prettier": "^3.0.3",
"yaml": "^2.3.3"
"prettier": "^3.2.5",
"yaml": "^2.4.1"
}
}
Loading

0 comments on commit 91a0055

Please sign in to comment.