Bump the actions group across 1 directory with 3 updates #7984
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@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- id: changed | |
uses: tj-actions/changed-files@c3a1bb2c992d77180ae65be6ae6c166cf40f857c # v45.0.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 |