Chore: Update issue-id action #88
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# SPDX-License-Identifier: Apache-2.0 | |
# SPDX-FileCopyrightText: 2024 The Linux Foundation | |
name: "📌 Action Versions Check" | |
# yamllint disable-line rule:truthy | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, reopened, edited, synchronize] | |
paths: [".github/**"] | |
permissions: {} | |
jobs: | |
### Test Version Pinned Actions ### | |
check-actions: | |
name: "Check Action SHA Pinning" | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
# Check entire repository on workflow_dispatch | |
- name: "Checkout entire repository" | |
if: ${{ github.event_name == 'workflow_dispatch' }} | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
# Otherwise, just check the current pull request | |
- name: "Ensure SHA pinned actions" | |
# yamllint disable-line rule:line-length | |
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@ed00f72a3ca5b6eff8ad4d3ffdcacedb67a21db1 # v3.0.15 |