Skip to content

Commit

Permalink
fix: use dependencies_file input when diffing
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianBezold committed Aug 16, 2023
1 parent e470a9d commit 8ee6e41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/run-dash/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ runs:
- name: Check for differences between existing ${{ inputs.dependencies_file }} and the generated one
id: dependency-diff
run: |
changed=$(git diff DEPENDENCIES)
changed=$(git diff ${{ inputs.dependencies_file }})
if [[ -n "$changed" ]]; then
echo "${{ inputs.dependencies_file }} not up-to-date"
echo "changed=true" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 8ee6e41

Please sign in to comment.