ci: Use GITHUB_OUTPUT envvar instead of set-output command #3789
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Shellcheck - Lint shell scripts | |
on: | |
pull_request: | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
shellcheck: | |
name: Shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@2.0.0 | |
with: | |
ignore_paths: >- | |
./android/gradlew | |
env: | |
SHELLCHECK_OPTS: --external-sources |