0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-08-30 07:15:39 +00:00
terraform-provider-proxmox/.github/workflows/code-quality.yml
renovate[bot] 4da06ecb94
chore(ci): update jetbrains/qodana-action action (v2024.1.1 → v2024.1.2)
| datasource  | package                 | from      | to        |
| ----------- | ----------------------- | --------- | --------- |
| github-tags | JetBrains/qodana-action | v2024.1.1 | v2024.1.2 |
2024-04-27 05:21:09 +00:00

25 lines
675 B
YAML

name: Qodana
on:
workflow_dispatch:
pull_request:
push:
branches: # Specify your branches here
- main # The 'main' branch
jobs:
qodana:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
checks: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
fetch-depth: 0 # a full history is required for pull request analysis
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2024.1.2
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}