Skip to content

Commit 78c2264

Browse files
MariusStorhaugdependabot[bot]Copilot
authored
Update dependencies and doc cleanup (#245)
This release updates workflow dependencies to their latest versions and standardizes table formatting across documentation files. **Workflow Dependency Updates:** * Updated actions in various workflows to their latest versions: * `super-linter/super-linter` from 8.2.1 to 8.3.0 * `PSModule/Document-PSModule` from 1.0.11 to 1.0.12 * `PSModule/Install-PSModuleHelpers` from 1.0.5 to 1.0.6 * `PSModule/Test-PSModule` from 3.0.6 to 3.0.7 **Documentation and Table Formatting Improvements:** * Standardized markdown table column alignment and spacing in multiple documentation files. * Added a style configuration for markdown tables (MD060) in `.github/linters/.markdown-lint.yml` to enforce leading column style and avoid emoji width issues. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
1 parent c7983ef commit 78c2264

File tree

16 files changed

+112
-108
lines changed

16 files changed

+112
-108
lines changed

.github/copilot-instructions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ When executing terminal commands (using `run_in_terminal` or similar tools):
1212

1313
## Other instructions
1414

15-
| Tech | Instruction file |
16-
|------|------------------|
15+
| Tech | Instruction file |
16+
|------------|-------------------------------------------------------------|
1717
| PowerShell | [pwsh.instructions.md](./instructions/pwsh.instructions.md) |
18-
| Markdown | [md.instructions.md](./instructions/md.instructions.md) |
18+
| Markdown | [md.instructions.md](./instructions/md.instructions.md) |

.github/linters/.markdown-lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ MD026:
1818
MD029: false # Ordered list item prefix
1919
MD033: false # Allow inline HTML
2020
MD036: false # Emphasis used instead of a heading
21+
MD060:
22+
style: "leading" # Table column style (leading avoids emoji width issues)
2123

2224
#################
2325
# Rules by tags #

.github/prompts/constitution.prompt.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ Two operating modes:
2929

3030
Replacement Analysis Table (when overlap detected):
3131

32-
| Existing Item | Proposed New / Change | Overlap Basis | Suggested Action |
33-
|---------------|-----------------------|---------------|------------------|
34-
| <title / section> | <incoming title / change> | e.g. semantic similarity, scope duplication | Replace / Merge / Keep Both |
32+
| Existing Item | Proposed New / Change | Overlap Basis | Suggested Action |
33+
|---------------------|---------------------------|----------------------------------------------|----------------------------|
34+
| <title / section> | <incoming title / change> | e.g. semantic similarity, scope duplication | Replace / Merge / Keep Both |
3535

3636
Heuristics for overlap:
3737
- Title similarity score (case-insensitive) >= 0.6 (rough string similarity) OR

.github/prompts/plan.prompt.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,14 @@ Given the implementation details provided as an argument, do this:
102102
- **Use the same title for the PR**: The PR title must match the issue title exactly
103103
- If unable to retrieve the issue title, determine the PR type and icon based on the changes:
104104

105-
| Type of change | Icon | Label |
106-
|-|-|-|
107-
| Docs | 📖 | Docs |
108-
| Fix | 🪲 | Fix, Patch |
109-
| Security fix | ⚠️ | Fix |
110-
| Patch | 🩹 | Patch |
111-
| Feature | 🚀 | Minor |
112-
| Breaking change | 🌟 | Major |
105+
| Type of change | Icon | Label |
106+
| --------------- | ---- | ---------- |
107+
| Docs | 📖 | Docs |
108+
| Fix | 🪲 | Fix, Patch |
109+
| Security fix | ⚠️ | Fix |
110+
| Patch | 🩹 | Patch |
111+
| Feature | 🚀 | Minor |
112+
| Breaking change | 🌟 | Major |
113113

114114
- Fallback PR title format (if issue title unavailable): `<Icon> [Type of change]: <Short description>`
115115
- Create PR description:

.github/prompts/pr.prompt.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ $ARGUMENTS
1414

1515
## Supported Change Types
1616

17-
| Type | Icon | Labels | Description |
18-
|------|------|--------|-------------|
19-
| Major | 🌟 | `Major` | Breaking changes that affect compatibility |
20-
| Minor | 🚀 | `Minor` | New features or enhancements |
21-
| Patch | 🩹 | `Patch` | Small fixes or improvements |
22-
| Fix | 🪲 | `Fix`, `Patch` | Bugfixes |
23-
| Docs | 📖 | `Docs` | Documentation changes only |
17+
| Type | Icon | Labels | Description |
18+
| ----- | ---- | -------------- | ------------------------------------------ |
19+
| Major | 🌟 | `Major` | Breaking changes that affect compatibility |
20+
| Minor | 🚀 | `Minor` | New features or enhancements |
21+
| Patch | 🩹 | `Patch` | Small fixes or improvements |
22+
| Fix | 🪲 | `Fix`, `Patch` | Bugfixes |
23+
| Docs | 📖 | `Docs` | Documentation changes only |
2424

2525
## Execution Steps
2626

.github/workflows/Build-Docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
path: ${{ inputs.WorkingDirectory }}/outputs/module
6161

6262
- name: Document module
63-
uses: PSModule/Document-PSModule@7e50d9f41753417346ff75b3601a90524aa8ab7e # v1.0.11
63+
uses: PSModule/Document-PSModule@15dc407c99e408fc0a4023d4f16aee2a5507ba74 # v1.0.12
6464
with:
6565
Name: ${{ inputs.Name }}
6666
WorkingDirectory: ${{ inputs.WorkingDirectory }}
@@ -102,7 +102,7 @@ jobs:
102102
103103
- name: Lint documentation
104104
id: super-linter
105-
uses: super-linter/super-linter/slim@2bdd90ed3262e023ac84bf8fe35dc480721fc1f2 # v8.2.1
105+
uses: super-linter/super-linter/slim@502f4fe48a81a392756e173e39a861f8c8efe056 # v8.3.0
106106
env:
107107
RUN_LOCAL: true
108108
DEFAULT_BRANCH: main

.github/workflows/Build-Site.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
fetch-depth: 0
4949

5050
- name: Install-PSModuleHelpers
51-
uses: PSModule/Install-PSModuleHelpers@e05e9875aafc0a1e63fc13989b3b683a7ef6444f # v1.0.5
51+
uses: PSModule/Install-PSModuleHelpers@d60d63e4be477d1ca0c67c6085101fb109bce8f1 # v1.0.6
5252

5353
- name: Download docs artifact
5454
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0

.github/workflows/Linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fetch-depth: 0
2626

2727
- name: Lint code base
28-
uses: super-linter/super-linter@2bdd90ed3262e023ac84bf8fe35dc480721fc1f2 # v8.2.1
28+
uses: super-linter/super-linter@502f4fe48a81a392756e173e39a861f8c8efe056 # v8.3.0
2929
env:
3030
GITHUB_TOKEN: ${{ github.token }}
3131
VALIDATE_BIOME_FORMAT: false

.github/workflows/Test-Module.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
path: ${{ inputs.WorkingDirectory }}/outputs/module
9393

9494
- name: Test-Module
95-
uses: PSModule/Test-PSModule@80b0364db8192e73f584603c68a127de171f881f # v3.0.6
95+
uses: PSModule/Test-PSModule@7d94ed751a60973867e84ea8d44521e94b7c485d # v3.0.7
9696
with:
9797
Name: ${{ inputs.Name }}
9898
Debug: ${{ inputs.Debug }}

.github/workflows/Test-ModuleLocal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
path: ${{ inputs.WorkingDirectory }}/outputs/module
105105

106106
- name: Install-PSModuleHelpers
107-
uses: PSModule/Install-PSModuleHelpers@e05e9875aafc0a1e63fc13989b3b683a7ef6444f # v1.0.5
107+
uses: PSModule/Install-PSModuleHelpers@d60d63e4be477d1ca0c67c6085101fb109bce8f1 # v1.0.6
108108

109109
- name: Import-Module
110110
id: import-module

0 commit comments

Comments
 (0)