diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 419e6ef..a01784d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 @@ -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/*/* @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -221,13 +221,13 @@ jobs: # Setup Gradle - name: Setup Gradle - uses: gradle/actions/setup-gradle@v5 + uses: gradle/actions/setup-gradle@v6 with: cache-cleanup: always # Cache Plugin Verifier IDEs - name: Setup Plugin Verifier IDEs Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }} @@ -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 @@ -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 diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index 856af79..2957bf4 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -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 }}" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bbe151f..c84c0fe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }} @@ -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 diff --git a/.github/workflows/run-ui-tests.yml b/.github/workflows/run-ui-tests.yml index 1842b72..e0eef75 100644 --- a/.github/workflows/run-ui-tests.yml +++ b/.github/workflows/run-ui-tests.yml @@ -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 @@ -44,7 +44,7 @@ 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 @@ -52,7 +52,7 @@ jobs: # 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