Skip to content

Commit

Permalink
fix(actions): pin actions to tag commit hash
Browse files Browse the repository at this point in the history
  • Loading branch information
brandtkeller committed Jul 8, 2024
1 parent 79e76e3 commit 090548f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/notify-lula/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
using: composite
steps:
- name: Find Comment
uses: peter-evans/find-comment@v3
uses: peter-evans/find-comment@3eae4d37986fb5a8592848f6a574fdf654e61f9e # v3.1.0
id: fc
with:
issue-number: ${{ github.event.pull_request.number }}
Expand All @@ -24,7 +24,7 @@ runs:

- name: Create comment
if: ${{ steps.fc.outputs.comment-id == '' && inputs.state == 'failure'}}
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
with:
issue-number: ${{ github.event.pull_request.number }}
body: |
Expand All @@ -34,7 +34,7 @@ runs:
- name: Update comment

Check failure on line 35 in .github/actions/notify-lula/action.yaml

View workflow job for this annotation

GitHub Actions / lint-check

35:27 [trailing-spaces] trailing spaces
if: ${{ steps.fc.outputs.comment-id != '' }}
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
with:
comment-id: ${{ steps.fc.outputs.comment-id }}
body: |
Expand Down

0 comments on commit 090548f

Please sign in to comment.