Skip to content

Commit

Permalink
fix: remove backticks from error message (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
simar7 authored Oct 15, 2024
1 parent 7483281 commit eadb05c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
if: ${{ inputs.cache == 'true' && inputs.version == 'latest' }}
shell: bash
run: |
echo "'setup-trivy' doesn't currently support caching the `latest` version"
echo "'setup-trivy' doesn't currently support caching the 'latest' version"
echo "read https://github.com/aquasecurity/setup-trivy?tab=readme-ov-file#caching for more details"
- name: Restore Trivy binary from cache
Expand Down Expand Up @@ -61,4 +61,4 @@ runs:
## Add the Trivy binary, retrieved from cache or installed by a script, to $GITHUB_PATH
- name: Add Trivy binary to $GITHUB_PATH
shell: bash
run: echo ${{ steps.binary-dir.outputs.dir }} >> $GITHUB_PATH
run: echo ${{ steps.binary-dir.outputs.dir }} >> $GITHUB_PATH

0 comments on commit eadb05c

Please sign in to comment.