Skip to content

Commit 5b4bc47

Browse files
committed
chore: pin action version sha
Signed-off-by: Rubens <[email protected]>
1 parent ba9a10e commit 5b4bc47

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
5454
- name: Generate TypeDoc API documentation
5555
run: |
56-
# Install typedoc with modern theme
57-
pnpm add -D typedoc@latest @typedoc/plugin-missing-exports@latest
56+
# Install typedoc
57+
pnpm add -D typedoc@latest
5858
5959
# Generate comprehensive API documentation
6060
npx typedoc src/main.ts src/lib/*.ts --out _site/docs \
@@ -63,7 +63,6 @@ jobs:
6363
--exclude "**/*.test.ts" \
6464
--exclude "**/__tests__/**" \
6565
--exclude "**/*.bench.ts" \
66-
--plugin @typedoc/plugin-missing-exports \
6766
--githubPages true \
6867
--includeVersion \
6968
--sort source-order \

.github/workflows/project-automation.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ jobs:
179179
const project = projectData.user?.projectV2;
180180
if (!project) {
181181
console.log(`Project ${projectNumber} not found for user ${owner}`);
182+
console.log('This may be due to insufficient permissions. Consider using a Personal Access Token (PAT) with project permissions.');
182183
return;
183184
}
184185

.github/workflows/sbom.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -356,16 +356,16 @@ jobs:
356356
EOF
357357
358358
- name: Setup Pages
359-
uses: actions/configure-pages@v5
359+
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
360360

361361
- name: Upload Pages artifact
362-
uses: actions/upload-pages-artifact@v3
362+
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
363363
with:
364364
path: '_site'
365365

366366
- name: Deploy to GitHub Pages
367367
id: deployment
368-
uses: actions/deploy-pages@v4
368+
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
369369

370370
- name: Update dist SBOM in main branch
371371
run: |

0 commit comments

Comments
 (0)