Skip to content

Commit 5a811aa

Browse files
authored
fix usage of GH_ACTION_VERSION by referencing pull_request.head.sha (#59)
1 parent 5506b9b commit 5a811aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
}
206206
env:
207207
LOCALSTACK_AUTH_TOKEN: ${{ secrets.LOCALSTACK_API_KEY }}
208-
GH_ACTION_VERSION: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref_name }}
208+
GH_ACTION_VERSION: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.ref_name }}
209209

210210
- name: Run AWS Commands
211211
run: |

0 commit comments

Comments
 (0)