Skip to content

Commit 3fe664e

Browse files
committed
ci: fix all lint-all issues across workflows, actions, docs, and scripts
- docs/reference/makefile.md: fix markdown table column count by removing duplicate pipe - .github/workflows/pages.yml: update comment for actions/upload-pages-artifact hash pin to match v5.0.0 - .github/workflows/nightly-audit.yml: fix invalid github action jdx/unirtm-action to jdx/mise-action - .github/workflows/cd.yml: remove redundant blank lines to fix yamllint issue - .github/actions/harden-runner: add YAML document start marker '---' to all action.yml files - npm/scripts/build.sh: set executable permissions (+x)
1 parent 4495b61 commit 3fe664e

9 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/actions/harden-runner/audit/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: "🔒 Harden Runner (Audit)"
23
description: "Security Egress Audit using audit profile"
34
runs:

.github/actions/harden-runner/full/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: "🔒 Harden Runner (Full)"
23
description: "Security Egress Audit using full profile"
34
runs:

.github/actions/harden-runner/minimal/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: "🔒 Harden Runner (Minimal)"
23
description: "Security Egress Audit using minimal profile"
34
runs:

.github/actions/harden-runner/standard/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: "🔒 Harden Runner (Standard)"
23
description: "Security Egress Audit using standard profile"
34
runs:

.github/workflows/cd.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,6 @@ jobs:
119119
echo "PATH (first 10):"
120120
echo "$PATH" | tr ':' '\n' | head -10
121121
122-
123-
124122
if [ "$EVENT_NAME" = "pull_request" ]; then
125123
unirtm exec -- commitlint --from "$BASE_SHA" --to "$HEAD_SHA" --verbose
126124
else

.github/workflows/nightly-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
persist-credentials: false
2929

3030
- name: "⚡ Setup unirtm (Tool Manager)"
31-
uses: jdx/unirtm-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1
31+
uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1
3232

3333
- name: "🛡️ Run Security Audit"
3434
shell: sh

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
GITHUB_TOKEN: ${{ secrets.WORKFLOW_SECRET || secrets.GITHUB_TOKEN }}
9090

9191
- name: "📦 Stage Assets for Web Deployment"
92-
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v4.1.1
92+
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5.0.0
9393
with:
9494
# Bundles the compiled static site into a secure artifact for GitHub Pages.
9595
path: docs/.vitepress/dist

docs/reference/makefile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ make check # Run lint + test in sequence
2323
| --------- | ---------------------------------------------------------- |
2424
| `help` | Show all available targets and their descriptions |
2525
| `lint` | Run all pre-commit hooks against all files |
26-
|| `test` | Execute test suite |
26+
| `test` | Execute test suite |
2727
| `build` | Build production artifacts |
2828
| `check` | Combined lint + test |
2929
| `clean` | Remove generated files and caches |

npm/scripts/build.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)