From 31d3a948103e8108a0f5a0fc273500be2297a6a1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 21:33:46 +0000 Subject: [PATCH] build(deps): bump the github-actions group across 1 directory with 5 updates Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [gradle/actions](https://github.com/gradle/actions) | `4.4.2` | `5.0.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.6.2` | `5.0.0` | | [actions/cache](https://github.com/actions/cache) | `4.2.4` | `4.3.0` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | Updates `actions/checkout` from 5 to 6 - [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/v5...v6) Updates `gradle/actions` from 4.4.2 to 5.0.0 - [Release notes](https://github.com/gradle/actions/releases) - [Commits](https://github.com/gradle/actions/compare/v4.4.2...v5.0.0) Updates `actions/upload-artifact` from 4.6.2 to 5.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.6.2...v5.0.0) Updates `actions/cache` from 4.2.4 to 4.3.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.2.4...v4.3.0) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: gradle/actions dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 12 ++++++------ .github/workflows/codeql.yml | 8 ++++---- .github/workflows/release.yml | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e88e588..2252470 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: pull-requests: write steps: - name: "Fetch sources" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Free disk space" uses: jlumbroso/free-disk-space@v1.3.1 with: @@ -30,12 +30,12 @@ jobs: - name: "Setup Gradle wrapper" run: chmod +x gradlew - name: "Setup Gradle" - uses: gradle/actions/setup-gradle@v4.4.2 + uses: gradle/actions/setup-gradle@v5.0.0 - name: "Run tests" run: ./gradlew check - name: "Collect results of failed tests" if: ${{ failure() }} - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 with: name: tests-result path: ${{ github.workspace }}/*/build/reports/tests @@ -63,7 +63,7 @@ jobs: ./gradlew :helm-values-intellij-plugin:printProductsReleases $PLUGIN_VERIFIER_CONFIGURATION --quiet > helm-values-intellij-plugin/build/productsReleases.txt - name: "Setup IntelliJ plugin verifier IDEs cache" - uses: actions/cache@v4.2.4 + uses: actions/cache@v4.3.0 with: path: ${{ steps.intellij_properties.outputs.pluginVerifierHomeDir }}/ides key: plugin-verifier-${{ hashFiles('helm-values-intellij-plugin/build/productsReleases.txt') }} @@ -71,7 +71,7 @@ jobs: run: ./gradlew :helm-values-intellij-plugin:verifyPlugin ${{ steps.intellij_properties.outputs.pluginVerifierConfiguration }} -Pplugin.verifier.home.dir=${{ steps.intellij_properties.outputs.pluginVerifierHomeDir }} - name: "Collect IntelliJ plugin verifier results" if: ${{ always() }} - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 with: name: pluginVerifier-result path: ${{ github.workspace }}/helm-values-intellij-plugin/build/reports/pluginVerifier @@ -84,7 +84,7 @@ jobs: unzip "$FILENAME.zip" -d content echo "filename=$FILENAME" >> $GITHUB_OUTPUT - name: "Upload IntelliJ plugin artifact" - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 with: name: ${{ steps.intellij_artifact.outputs.filename }} path: ./helm-values-intellij-plugin/build/distributions/content/*/* diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 4b056e3..e7fc39d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -57,7 +57,7 @@ jobs: # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages steps: - name: "Checkout repository" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Setup Java" uses: actions/setup-java@v5.0.0 with: @@ -68,13 +68,13 @@ jobs: run: chmod +x gradlew if: matrix.language == 'java-kotlin' - name: "Setup Gradle" - uses: gradle/actions/setup-gradle@v4.4.2 + uses: gradle/actions/setup-gradle@v5.0.0 with: cache-read-only: true if: matrix.language == 'java-kotlin' # Initializes the CodeQL tools for scanning. - name: "Initialize CodeQL" - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} build-mode: ${{ matrix.build-mode }} @@ -85,6 +85,6 @@ jobs: # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs # queries: security-extended,security-and-quality - name: "Perform CodeQL analysis" - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: "/language:${{matrix.language}}" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 57dd3fb..fdc250d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: contents: write steps: - name: "Fetch Sources" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Setup Java" uses: actions/setup-java@v5.0.0 with: @@ -22,7 +22,7 @@ jobs: - name: "Setup gradle wrapper" run: chmod +x gradlew - name: "Setup gradle" - uses: gradle/actions/setup-gradle@v4.4.2 + uses: gradle/actions/setup-gradle@v5.0.0 with: cache-read-only: true - name: "Get version from tag"