Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/create-update-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
id-token: write
steps:
- name: Checkout head
uses: actions/checkout@v5
uses: actions/checkout@v7

Check failure

Code scanning / zizmor

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

unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Fetch tags
run: git fetch --prune --unshallow --tags
- name: Get extension token
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

Check failure

Code scanning / zizmor

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

unpinned action reference: action is not pinned to a hash (required by blanket policy)
Comment thread
ulissesferreira marked this conversation as resolved.
Dismissed
- name: Validate changelog diffs
uses: ./.github/actions/check-merge-queue-changelogs

Expand Down Expand Up @@ -130,7 +130,7 @@
shell: bash
run: |
if ! git diff --exit-code; then
echo "Working tree dirty at end of job"

Check failure

Code scanning / zizmor

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

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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
if: github.event_name != 'merge_group' || needs.check-skip-merge-queue.outputs.skip-merge-queue != 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

Check failure

Code scanning / zizmor

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

unpinned action reference: action is not pinned to a hash (required by blanket policy)
Comment thread
ulissesferreira marked this conversation as resolved.
Dismissed
- name: Download actionlint
id: download-actionlint
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/914e7df21a07ef503a81201c76d2b11c789d3fca/scripts/download-actionlint.bash) 1.7.12
Expand Down Expand Up @@ -86,7 +86,7 @@
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v7

Check failure

Code scanning / zizmor

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

unpinned action reference: action is not pinned to a hash (required by blanket policy)
Comment thread
ulissesferreira marked this conversation as resolved.
Dismissed
- name: Check release
if: github.event_name != 'push'
uses: ./.github/actions/check-release
Expand All @@ -94,7 +94,7 @@
commit-starts-with: ${{ vars.RELEASE_COMMIT_PREFIX }}

is-release:
name: Determine whether this is a release merge commit

Check failure

Code scanning / zizmor

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

unpinned action reference: action is not pinned to a hash (required by blanket policy)
needs: lint-build-test
if: github.event_name == 'push'
runs-on: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-changelogs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
>> "$GITHUB_OUTPUT"

- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

Check failure

Code scanning / zizmor

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

unpinned action reference: action is not pinned to a hash (required by blanket policy)
Comment thread
ulissesferreira marked this conversation as resolved.
Dismissed
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
Expand Down Expand Up @@ -103,7 +103,7 @@
contents: write
pull_requests: write
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

Check failure

Code scanning / zizmor

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

unpinned action reference: action is not pinned to a hash (required by blanket policy)
Comment thread
ulissesferreira marked this conversation as resolved.
Dismissed
- name: React to the comment
run: |
gh api \
Expand Down Expand Up @@ -136,7 +136,7 @@
pull_requests: write

- name: Check out the base branch
uses: actions/checkout@v6
uses: actions/checkout@v7

Check failure

Code scanning / zizmor

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

unpinned action reference: action is not pinned to a hash (required by blanket policy)
Comment thread
ulissesferreira marked this conversation as resolved.
Dismissed
with:
ref: ${{ needs.is-release.outputs.merge-base }}
token: ${{ steps.get-token.outputs.token }}
Expand Down
Loading