mirror of
https://github.com/lunchcat/sif.git
synced 2026-01-06 09:43:58 -08:00
- update actions/checkout from v2/v3 to v4 across all workflows - update reviewdog actions to latest versions - update jetbrains/qodana-action to v2024.3 - update actions/dependency-review-action to v4 - replace deprecated actions/create-release and upload-release-asset with softprops/action-gh-release@v2
25 lines
499 B
YAML
25 lines
499 B
YAML
name: Qodana
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
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 }}
|
|
fetch-depth: 0
|
|
- name: 'Qodana Scan'
|
|
uses: JetBrains/qodana-action@v2024.3
|
|
env:
|
|
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|