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

fix(deps): update dependency @octokit/rest to v21 #7564

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
7 changes: 6 additions & 1 deletion .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "21"
- name: Wait for Pages changed to be neutral
uses: fountainhead/[email protected]
id: waitForCheck
Expand All @@ -48,7 +51,9 @@ jobs:
max_timeout: 120
- name: Run link checker
run: |
cd tools/broken-link-checker
cd tools/_utilities
npm ci
cd ../tools/broken-link-checker
npm ci
node run.js pr \
--base_url https://deploy-preview-${{ github.event.pull_request.number }}--kongdocs.netlify.app \
Expand Down
244 changes: 198 additions & 46 deletions check-generated-content/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion check-generated-content/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
"version": "1.0.0",
"description": "",
"main": "run.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Michael Heap <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/github": "^6.0.0",
"@octokit/rest": "^20.0.0",
"@octokit/rest": "^21.0.0",
"gray-matter": "^4.0.3",
"minimist": "^1.2.5"
}
Expand Down
Loading
Loading