Skip to content

Commit

Permalink
added version for shellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
led0nk committed Apr 18, 2024
1 parent 214f6ab commit 91a4868
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/shellcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,31 @@ name: shellcheck
on:
push:
branches:
- main
- main
pull_request:
permissions: {}

jobs:
shellcheck:
name: shellcheck
runs-on: ubuntu-latest
env:
VERSION: v0.10.0
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: shellcheck workflow-scripts
uses: ludeeus/action-shellcheck@master
env:
SHELLCHECK_OPTS: -x -e SC2059 -e SC2086
with:
scandir: '.github/workflows/scripts'
scandir: ".github/workflows/scripts"
severity: warning
version: ${{ env.VERSION }}
- name: shellcheck buildscripts
uses: ludeeus/action-shellcheck@master
env:
SHELLCHECK_OPTS: -x -e SC2059 -e SC2086
with:
scandir: 'internal/buildscripts'
scandir: "internal/buildscripts"
severity: warning
version: ${{ env.VERSION }}

0 comments on commit 91a4868

Please sign in to comment.