Bump softprops/action-gh-release from 2.1.0 to 2.2.0 #14
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
name: "Validate Workflows" | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
dryRun: | |
type: boolean | |
description: Dry run | |
default: true | |
debug: | |
type: boolean | |
description: Debug mode | |
default: false | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
validate-workflows: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Ensure GitHub actions are SHA pinned | |
env: | |
DRY_RUN: ${{ !inputs.dryRun && '--no-dry-run' || '' }} | |
DEBUG: ${{ inputs.debug && '--debug' || '' }} | |
run: | | |
bash scripts/validate-github-actions-pinned.sh $DRY_RUN $DEBUG |