expose build args, format file, update deps and fix diggest upload #124
Workflow file for this run
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: Workflow linter | |
on: | |
push: | |
paths: | |
- '.github/workflows/*' | |
jobs: | |
workflow-linter: | |
runs-on: ubuntu-latest | |
name: Workflow linter | |
steps: | |
- name: Setup | Checkout submodules | |
uses: actions/checkout@v4 | |
- name: Get modified files | |
id: files | |
uses: jitterbit/get-changed-files@v1 | |
continue-on-error: true | |
- uses: reviewdog/action-actionlint@v1 | |
with: | |
actionlint_flags: --ignore SC2086 --config-file .github/actionlint.yaml | |
fail_on_error: true | |
level: error | |