Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/publish-on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

Check failure on line 16 in .github/workflows/publish-on-tag.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 16 in .github/workflows/publish-on-tag.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

publish-on-tag.yml:16: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Set up Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v7

Check failure on line 18 in .github/workflows/publish-on-tag.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 18 in .github/workflows/publish-on-tag.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

publish-on-tag.yml:18: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@
workflow_dispatch:

jobs:
update:

Check warning on line 10 in .github/workflows/update.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

update.yml:10: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

Check failure on line 14 in .github/workflows/update.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 14 in .github/workflows/update.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

update.yml:14: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
# Fetching full history is required for the changelog script.
fetch-depth: 0

- name: Set up Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v7

Check failure on line 22 in .github/workflows/update.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 22 in .github/workflows/update.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

update.yml:22: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
node-version-file: '.nvmrc'

Expand All @@ -28,7 +28,7 @@
scripts/update-to-latest.sh

- name: Check out debugger-protocol-viewer
uses: actions/checkout@v6
uses: actions/checkout@v7

Check failure on line 31 in .github/workflows/update.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 31 in .github/workflows/update.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

update.yml:31: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
repository: ChromeDevTools/debugger-protocol-viewer
path: debugger-protocol-viewer
Expand All @@ -42,7 +42,7 @@
npm run build

- name: Deploy to gh-pages
uses: JamesIves/github-pages-deploy-action@v4

Check failure on line 45 in .github/workflows/update.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 45 in .github/workflows/update.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

update.yml:45: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
branch: gh-pages
folder: debugger-protocol-viewer/devtools-protocol
Expand Down
Loading