From 74547237659f22dbbe00636c0c8f6ba57c7c272e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 11:33:56 +0000 Subject: [PATCH] ci: bump the github-actions-major group across 1 directory with 7 updates Bumps the github-actions-major group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6` | `7` | | [gradle/actions](https://github.com/gradle/actions) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6` | `7` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5` | `7` | | [JetBrains/qodana-action](https://github.com/jetbrains/qodana-action) | `2025.3` | `2026.1` | | [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) | `2` | `3` | | [jtalk/url-health-check-action](https://github.com/jtalk/url-health-check-action) | `4` | `5` | Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `gradle/actions` from 5 to 6 - [Release notes](https://github.com/gradle/actions/releases) - [Commits](https://github.com/gradle/actions/compare/v5...v6) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `codecov/codecov-action` from 5 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v5...v7) Updates `JetBrains/qodana-action` from 2025.3 to 2026.1 - [Release notes](https://github.com/jetbrains/qodana-action/releases) - [Commits](https://github.com/jetbrains/qodana-action/compare/v2025.3...v2026.1) Updates `dependabot/fetch-metadata` from 2 to 3 - [Release notes](https://github.com/dependabot/fetch-metadata/releases) - [Commits](https://github.com/dependabot/fetch-metadata/compare/v2...v3) Updates `jtalk/url-health-check-action` from 4 to 5 - [Release notes](https://github.com/jtalk/url-health-check-action/releases) - [Commits](https://github.com/jtalk/url-health-check-action/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-major - dependency-name: gradle/actions dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-major - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-major - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-major - dependency-name: JetBrains/qodana-action dependency-version: '2026.1' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-major - dependency-name: dependabot/fetch-metadata dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-major - dependency-name: jtalk/url-health-check-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 28 ++++++++++----------- .github/workflows/dependabot-auto-merge.yml | 2 +- .github/workflows/release.yml | 4 +-- .github/workflows/run-ui-tests.yml | 6 ++--- 4 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 419e6ef..9dc68d9 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,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 @@ -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