Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v6
uses: actions/checkout@v7

# Validate wrapper
- name: Gradle Wrapper Validation
uses: gradle/actions/wrapper-validation@v5
uses: gradle/actions/wrapper-validation@v6

# Set up Java environment for the next steps
- name: Setup Java
Expand All @@ -68,7 +68,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
uses: gradle/actions/setup-gradle@v6
with:
cache-cleanup: always

Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:

# Store already-built plugin as an artifact for downloading
- name: Upload artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ steps.artifact.outputs.filename }}
path: ./build/distributions/content/*/*
Expand All @@ -123,7 +123,7 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v6
uses: actions/checkout@v7

# Set up Java environment for the next steps
- name: Setup Java
Expand All @@ -134,7 +134,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
uses: gradle/actions/setup-gradle@v6
with:
cache-cleanup: always

Expand All @@ -145,14 +145,14 @@ jobs:
# Collect Tests Result of failed tests
- name: Collect Tests Result
if: ${{ failure() }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: tests-result
path: ${{ github.workspace }}/build/reports/tests

# Upload the Kover report to CodeCov
- name: Upload Code Coverage Report
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v7
with:
files: ${{ github.workspace }}/build/reports/kover/report.xml

Expand All @@ -176,7 +176,7 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v6
uses: actions/checkout@v7
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
Expand All @@ -190,7 +190,7 @@ jobs:

# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/qodana-action@v2025.3
uses: JetBrains/qodana-action@v2026.1
with:
cache-default-branch-only: true

Expand All @@ -210,7 +210,7 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v6
uses: actions/checkout@v7

# Set up Java environment for the next steps
- name: Setup Java
Expand All @@ -221,7 +221,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
uses: gradle/actions/setup-gradle@v6
with:
cache-cleanup: always

Expand All @@ -239,7 +239,7 @@ jobs:
# Collect Plugin Verifier Result
- name: Collect Plugin Verifier Result
if: ${{ always() }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: pluginVerifier-result
path: ${{ github.workspace }}/build/reports/pluginVerifier
Expand All @@ -257,7 +257,7 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v6
uses: actions/checkout@v7

# Remove old release drafts by using the curl request for the available releases with a draft flag
- name: Remove Old Release Drafts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
uses: dependabot/fetch-metadata@v3
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event.release.tag_name }}

Expand All @@ -33,7 +33,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
uses: gradle/actions/setup-gradle@v6
with:
cache-cleanup: always

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v6
uses: actions/checkout@v7

# Set up Java environment for the next steps
- name: Setup Java
Expand All @@ -44,15 +44,15 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
uses: gradle/actions/setup-gradle@v6

# Run IDEA prepared for UI testing
- name: Run IDE
run: ${{ matrix.runIde }}

# Wait for IDEA to be started
- name: Health Check
uses: jtalk/url-health-check-action@v4
uses: jtalk/url-health-check-action@v5
with:
url: http://127.0.0.1:8082
max-attempts: 15
Expand Down
Loading