Skip to content

Commit

Permalink
Fixing GHA action paths (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
ubiratansoares authored Nov 5, 2023
1 parent 2bd82f4 commit 6e196c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions essentials/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ runs:

- name: Lint documentation
shell: bash
run: ./src/docs-linter.sh $GITHUB_WORKSPACE
run: ${{ github.action_path }}/../src/docs-linter.sh $GITHUB_WORKSPACE

- name: Lint Bash Scripts
shell: bash
run: ./src/bash-linter.sh $GITHUB_WORKSPACE
run: ${{ github.action_path }}/../src/bash-linter.sh $GITHUB_WORKSPACE

- name: Check licenses on source files
shell: bash
run: ./src/license-enforcer.sh $GITHUB_WORKSPACE ${{ inputs.file-patterns }} ${{ inputs.license }}
run: ${{ github.action_path }}/../src/license-enforcer.sh $GITHUB_WORKSPACE ${{ inputs.file-patterns }} ${{ inputs.license }}

0 comments on commit 6e196c0

Please sign in to comment.