Bump tj-actions/changed-files from 44.5.2 to 44.5.3 in the actions group #7798
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
on: | |
pull_request: | |
jobs: | |
presubmit-readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- id: changed | |
uses: tj-actions/changed-files@eaf854ef0c266753e1abec356dcf17d92695b251 # v44.5.3 | |
with: | |
files_yaml: | | |
automated: | |
- ./images/** | |
- ./tflib/** | |
- ./.terraform.lock.hcl | |
- ./Makefile | |
- ./main.tf | |
- ./generated.tf | |
- ./go.mod | |
- ./go.sum | |
- if: steps.changed.outputs.automated_any_modified == 'true' | |
run: | | |
echo "You have made changes to files that are managed by automation." | |
exit 1 |