build(deps): Bump bytebuddy.version from 1.14.14 to 1.14.15 #936
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Qodana | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- master | |
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.1 | |
with: | |
pr-mode: true # 仅分析拉取请求中已更改的文件 | |
args: --cleanup # --apply-fixes pr-mode: false | |
push-fixes: pull-request | |
env: | |
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} |