Skip to content

Commit

Permalink
Release JetBrains/[email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
ak1113 committed Aug 18, 2021
1 parent 42ee513 commit 0aa999f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
${{ runner.os }}-qodana-
- name: Qodana - Code Inspection
uses: JetBrains/qodana-action@v2.0-eap
uses: JetBrains/qodana-action@v2.1-eap

- uses: actions/upload-artifact@v2
with:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@ Input parameters:

```yaml
- name: Qodana - Code Inspection
uses: JetBrains/qodana-action@v2.0-eap
uses: JetBrains/qodana-action@v2.1-eap
```
All action's inputs are optional.
```yaml
- name: Qodana - Code Inspection
uses: JetBrains/qodana-action@v2.0-eap
uses: JetBrains/qodana-action@v2.1-eap
with:
project-dir: ${{ github.workspace }}
results-dir: ${{ github.workspace }}/qodana
cache-dir: /home/runner/work/_temp/_github_home/qodana-cache
```
Before you begin, view the list of [Supported Technologies](https://github.com/JetBrains/Qodana/blob/main/General/supported-technologies.md). For the full documentation of the action's inputs, see [action.yaml](action.yaml).
Before you begin, view the list of [Supported Technologies](https://www.jetbrains.com/help/qodana/supported-technologies.html). For the full documentation of the action's inputs, see [action.yaml](action.yaml).
## Output Results
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ runs:
steps:
- run: mkdir -p "${{inputs.results-dir}}" "${{inputs.cache-dir}}"
shell: bash
- run: docker run -u $UID -v ${{inputs.project-dir}}:/data/project -v ${{inputs.results-dir}}:/data/results -v ${{inputs.cache-dir}}:/data/cache jetbrains/qodana:2021.1-eap --save-report
- run: docker run -u $UID -v ${{inputs.project-dir}}:/data/project -v ${{inputs.results-dir}}:/data/results -v ${{inputs.cache-dir}}:/data/cache jetbrains/qodana:2021.2-eap --save-report
shell: bash

0 comments on commit 0aa999f

Please sign in to comment.