Skip to content

remove support for v0.x release line #2576

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

Merged
merged 2 commits into from
Jul 31, 2025
Merged
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
6 changes: 0 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@ updates:
interval: 'daily'
time: '02:00'
target-branch: 'main'
- package-ecosystem: 'npm'
directory: '/'
target-branch: 'master'
schedule:
interval: 'daily'
time: '01:00'
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
Expand Down
50 changes: 25 additions & 25 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
name: Build and Deploy Docs
on:
push:
branches:
- master
push:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The whitespace changes in this file were done automatically by my editor.

branches:
- main
jobs:
build-and-deploy-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
# Pre-check to validate that versions match between package.json
# and package-lock.json. Needs to run before npm install
- name: Validate package.json and package-lock.json versions
run: node version-check.js
- name: Install dependencies
run: npm ci
- name: Build docs
run: npm run docs
build-and-deploy-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
# Pre-check to validate that versions match between package.json
# and package-lock.json. Needs to run before npm install
- name: Validate package.json and package-lock.json versions
run: node version-check.js
- name: Install dependencies
run: npm ci
- name: Build docs
run: npm run docs

- name: Deploy docs
uses: JamesIves/github-pages-deploy-action@v4.7.3
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs # The folder the action should deploy.
- name: Deploy docs
uses: JamesIves/github-pages-deploy-action@v4.7.3
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs # The folder the action should deploy.
2 changes: 1 addition & 1 deletion pre-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [[ "${branch}" != "main" ]]; then
fi

if ! git diff --quiet; then
echo "This script must only run on a clean master branch."
echo "This script must only run on a clean main branch."
echo
git status
exit 1
Expand Down