Skip to content

Bump streetsidesoftware/cspell-action from 6 to 7 #488

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
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
12 changes: 12 additions & 0 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Copilot Instructions

- This repo is for the Modus Bootstrap v1 documentation site.
- The site is built with Hugo.
- Node v22 is recommended for development.
- The site is written in US English.
- Most code is formatted with Prettier.
- The site is deployed to Netlify.
- The CSS is built with Modus Bootstrap 1, which is based on Bootstrap 4.
- Hex codes should be in lowercase.
- Page URLs should always end with a trailing slash.
- YML files should have --- at the start and end of the file.
4 changes: 0 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ version: 2
updates:
- package-ecosystem: npm
directory: "/"
reviewers:
- coliff
labels:
- dependencies
schedule:
Expand All @@ -12,8 +10,6 @@ updates:
open-pull-requests-limit: 1
- package-ecosystem: github-actions
directory: "/"
reviewers:
- coliff
schedule:
interval: monthly
labels:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/azure-static-web-apps-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: "latest"
hugo-version: "0.145.0"
extended: true

- run: npm i
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
persist-credentials: false

- uses: streetsidesoftware/cspell-action@v6
- uses: streetsidesoftware/cspell-action@v7
with:
inline: warning
incremental_files_only: true
2 changes: 1 addition & 1 deletion .ncurc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"upgrade": true,
"reject": ["bootstrap", "eslint"]
"reject": ["bootstrap", "eslint", "hugo-bin"]
}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.18.3
20.19.1
2 changes: 1 addition & 1 deletion content/components/inputs.md
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ Bootstrap also provides a way to translate the "Browse" text in HTML with the `d

<script src="https://cdn.jsdelivr.net/npm/bs-custom-file-input/dist/bs-custom-file-input.min.js"></script>
<script>
$(document).ready(function () {
$(function () {
bsCustomFileInput.init()
});
</script>
1 change: 1 addition & 0 deletions data/breakpoints.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
- breakpoint: xs
abbr: ""
name: X-Small
Expand Down
1 change: 0 additions & 1 deletion layouts/shortcodes/example.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
<select class="custom-select flex-grow-0 w-auto" {{ with .Get "id" }} id="{{- . -}}-select" {{- end -}}>
<option value="white">White</option>
<option value="light">Light Gray</option>
<!-- <option value="dark text-white">Dark Gray</option> -->
</select>
</div>
{{- end -}}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"node": ">=20.17.0"
},
"volta": {
"node": "20.18.3"
"node": "20.19.1"
},
"hugo-bin": {
"buildTags": "extended"
Expand Down
Loading