Skip to content

Commit b02d00e

Browse files
authored
chore: pin action version sha (#38)
Signed-off-by: Rubens <[email protected]>
1 parent ba9a10e commit b02d00e

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333
with:
3434
# prettier-ignore
3535
project-url: https://github.com/users/${{ github.repository_owner }}/projects/${{ env.PROJECT_NUMBER }}
36-
github-token: ${{ secrets.GITHUB_TOKEN }}
36+
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
3737

3838
- name: Add PR to project
3939
if: github.event_name == 'pull_request' && github.event.action == 'opened'
4040
uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2
4141
with:
4242
# prettier-ignore
4343
project-url: https://github.com/users/${{ github.repository_owner }}/projects/${{ env.PROJECT_NUMBER }}
44-
github-token: ${{ secrets.GITHUB_TOKEN }}
44+
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
4545

4646
- name: Move items based on status
4747
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
@@ -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)