From 3ecc8adb93c4aef85a51e04da8c177a89c01f5f0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 11:14:43 +0000 Subject: [PATCH] FAIR-58 CI: Bump the actions group across 1 directory with 4 updates Bumps the actions group with 4 updates in the / directory: [gradle/actions/wrapper-validation](https://github.com/gradle/actions), [gradle/actions/setup-gradle](https://github.com/gradle/actions), [github/codeql-action/init](https://github.com/github/codeql-action) and [github/codeql-action/analyze](https://github.com/github/codeql-action). Updates `gradle/actions/wrapper-validation` from 48b5f213c81028ace310571dc5ec0fbbca0b2947 to ed408507eac070d1f99cc633dbcf757c94c7933a - [Release notes](https://github.com/gradle/actions/releases) - [Commits](https://github.com/gradle/actions/compare/48b5f213c81028ace310571dc5ec0fbbca0b2947...ed408507eac070d1f99cc633dbcf757c94c7933a) Updates `gradle/actions/setup-gradle` from 48b5f213c81028ace310571dc5ec0fbbca0b2947 to ed408507eac070d1f99cc633dbcf757c94c7933a - [Release notes](https://github.com/gradle/actions/releases) - [Commits](https://github.com/gradle/actions/compare/48b5f213c81028ace310571dc5ec0fbbca0b2947...ed408507eac070d1f99cc633dbcf757c94c7933a) Updates `github/codeql-action/init` from 4.37.0 to 4.37.1 - [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/99df26d4f13ea111d4ec1a7dddef6063f76b97e9...7188fc363630916deb702c7fdcf4e481b751f97a) Updates `github/codeql-action/analyze` from 4.37.0 to 4.37.1 - [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/99df26d4f13ea111d4ec1a7dddef6063f76b97e9...7188fc363630916deb702c7fdcf4e481b751f97a) --- updated-dependencies: - dependency-name: gradle/actions/wrapper-validation dependency-version: ed408507eac070d1f99cc633dbcf757c94c7933a dependency-type: direct:production dependency-group: actions - dependency-name: gradle/actions/setup-gradle dependency-version: ed408507eac070d1f99cc633dbcf757c94c7933a dependency-type: direct:production dependency-group: actions - dependency-name: github/codeql-action/init dependency-version: 4.37.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: github/codeql-action/analyze dependency-version: 4.37.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/benchmark.yml | 4 ++-- .github/workflows/ci.yml | 4 ++-- .github/workflows/codeql.yml | 8 ++++---- .github/workflows/release.yml | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 5931780..8e1a7de 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -43,10 +43,10 @@ jobs: java-version: '17' - name: Validate Gradle wrapper - uses: gradle/actions/wrapper-validation@48b5f213c81028ace310571dc5ec0fbbca0b2947 # v4 + uses: gradle/actions/wrapper-validation@ed408507eac070d1f99cc633dbcf757c94c7933a # v4 - name: Set up Gradle - uses: gradle/actions/setup-gradle@48b5f213c81028ace310571dc5ec0fbbca0b2947 # v4 + uses: gradle/actions/setup-gradle@ed408507eac070d1f99cc633dbcf757c94c7933a # v4 - name: Install Android SDK platform 36 run: | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65f9f99..a4c336f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,10 +38,10 @@ jobs: # Fails the build if gradle-wrapper.jar was tampered with. - name: Validate Gradle wrapper - uses: gradle/actions/wrapper-validation@48b5f213c81028ace310571dc5ec0fbbca0b2947 # v4 + uses: gradle/actions/wrapper-validation@ed408507eac070d1f99cc633dbcf757c94c7933a # v4 - name: Set up Gradle - uses: gradle/actions/setup-gradle@48b5f213c81028ace310571dc5ec0fbbca0b2947 # v4 + uses: gradle/actions/setup-gradle@ed408507eac070d1f99cc633dbcf757c94c7933a # v4 # The runner image does not necessarily ship the exact compileSdk. - name: Install Android SDK platform 36 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 8c17e64..73e8746 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -47,13 +47,13 @@ jobs: java-version: '17' - name: Validate Gradle wrapper - uses: gradle/actions/wrapper-validation@48b5f213c81028ace310571dc5ec0fbbca0b2947 # v4 + uses: gradle/actions/wrapper-validation@ed408507eac070d1f99cc633dbcf757c94c7933a # v4 # Dependency cache only. If Gradle were allowed to reuse compiled classes, # the compile step below would report UP-TO-DATE, CodeQL would observe no # compiler at all, and the run dies with "no source code seen during build". - name: Set up Gradle - uses: gradle/actions/setup-gradle@48b5f213c81028ace310571dc5ec0fbbca0b2947 # v4 + uses: gradle/actions/setup-gradle@ed408507eac070d1f99cc633dbcf757c94c7933a # v4 with: cache-read-only: true @@ -65,7 +65,7 @@ jobs: "platforms;android-36" "build-tools;36.0.0" > /dev/null - name: Initialize CodeQL - uses: github/codeql-action/init@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0 + uses: github/codeql-action/init@7188fc363630916deb702c7fdcf4e481b751f97a # v4.37.1 with: languages: java-kotlin # security-extended adds lower-severity queries the default pack skips. @@ -83,6 +83,6 @@ jobs: :app:compileDebugKotlin :app:compileDebugJavaWithJavac - name: Perform CodeQL analysis - uses: github/codeql-action/analyze@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0 + uses: github/codeql-action/analyze@7188fc363630916deb702c7fdcf4e481b751f97a # v4.37.1 with: category: /language:java-kotlin diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 85a031b..14dc705 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -88,10 +88,10 @@ jobs: # Fails the build if gradle-wrapper.jar was tampered with. - name: Validate Gradle wrapper - uses: gradle/actions/wrapper-validation@48b5f213c81028ace310571dc5ec0fbbca0b2947 # v4 + uses: gradle/actions/wrapper-validation@ed408507eac070d1f99cc633dbcf757c94c7933a # v4 - name: Set up Gradle - uses: gradle/actions/setup-gradle@48b5f213c81028ace310571dc5ec0fbbca0b2947 # v4 + uses: gradle/actions/setup-gradle@ed408507eac070d1f99cc633dbcf757c94c7933a # v4 # The runner image does not necessarily ship the exact compileSdk. - name: Install Android SDK platform 36