-
-
Notifications
You must be signed in to change notification settings - Fork 16
Closed
Labels
help wantedExtra attention is neededExtra attention is needed
Description
Currently this action is hardcoded to only check workflow files:
github-actions-ensure-sha-pinned-actions/src/index.js
Lines 14 to 15 in f324355
const workflowsPath = process.env['ZG_WORKFLOWS_PATH'] || '.github/workflows'; | |
const globber = await glob.create([workflowsPath + '/*.yaml', workflowsPath + '/*.yml'].join('\n')); |
As "composite" actions can uses:
other actions, it would be nice to be able to use this action on them too:
i.e. I'd like this to be caught by this action:
cat action.yml
:
name: 'Hello World file creator action'
runs:
using: "composite"
steps:
- uses: actions/checkout@v4 # <---
- shell: bash
run: echo "hello world" >> file.txt
kleinfreund
Metadata
Metadata
Assignees
Labels
help wantedExtra attention is neededExtra attention is needed