diff options
author | 2022-10-31 23:40:52 +0400 | |
---|---|---|
committer | 2022-10-31 23:40:52 +0400 | |
commit | 09191679abfeb743da3a2f93ff642d7e7ff1f46a (patch) | |
tree | e68f334596ee5a89e61fcc20304f96ca2e15b4bb | |
parent | Switch To Compose v2 (diff) |
Fix Invalid GitHub Action
One of the GitHub action files was failing validation due to an
unindented block. It is unclear why this failure started now.
Signed-off-by: Hassan Abouelela <[email protected]>
-rw-r--r-- | .github/workflows/lint.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index b4b69ac..cccdb89 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -29,8 +29,8 @@ jobs: with: path: ${{ env.PRE_COMMIT_HOME }} key: "precommit-0-${{ runner.os }}-${{ env.PRE_COMMIT_HOME }}-\ - ${{ steps.python.outputs.python-version }}-\ - ${{ hashFiles('./.pre-commit-config.yaml') }}" + ${{ steps.python.outputs.python-version }}-\ + ${{ hashFiles('./.pre-commit-config.yaml') }}" # Skip the flake8 hook because the following command will run it. - name: Run pre-commit hooks |