Skip to content

chore(deps): bump jetbrainsCompose from 1.10.0 to 1.10.1 #2533

chore(deps): bump jetbrainsCompose from 1.10.0 to 1.10.1

chore(deps): bump jetbrainsCompose from 1.10.0 to 1.10.1 #2533

name: "Validate Workflows"
on:
pull_request:
workflow_dispatch:
inputs:
dryRun:
type: boolean
description: Dry run
default: true
debug:
type: boolean
description: Debug mode
default: false
permissions:
contents: read
jobs:
validate-workflows:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Ensure GitHub actions are SHA pinned
env:
DRY_RUN: ${{ !inputs.dryRun && '--no-dry-run' || '' }}
DEBUG: ${{ inputs.debug && '--debug' || '' }}
run: |
bash scripts/ci/validate-github-actions-pinned.sh $DRY_RUN $DEBUG