Skip to content

Commit

Permalink
Fix how CI env variable is set for CodeQL workflow (#1858)
Browse files Browse the repository at this point in the history
Motivation:

`with` is an incorrect property, `env` should be used instead.

Modifications:

- `with` -> `env`;

Result:

CodeQL workflow starts working.
  • Loading branch information
idelpivnitskiy committed Oct 1, 2021
1 parent 80c1ff8 commit 759f589
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
languages: ${{ matrix.language }}
- name: Execute gradle build
with:
env:
CI: true
run: ./gradlew --parallel clean assemble
- name: Perform CodeQL Analysis
Expand Down

0 comments on commit 759f589

Please sign in to comment.