From 3bddc9e17d759df3b8ab216fb3432b87cae9f515 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 16:48:15 +0000 Subject: [PATCH] build(deps): bump the actions-dependencies group across 1 directory with 3 updates Bumps the actions-dependencies group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-artifact). 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 `actions/cache` from 5 to 6 - [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/v5...v6) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-dependencies - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-dependencies - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c2a843d..a12ca0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -74,7 +74,7 @@ jobs: echo "AWS_LC_SYS_PREBUILT_NASM=1" >> "$GITHUB_ENV" - name: Cache Gradle dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.gradle/caches @@ -100,7 +100,7 @@ jobs: run: ./gradlew app:assembleDebug - name: Upload Debug APK artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: app-debug-apks-${{ github.run_id }} path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 35bad30..3e68ea8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }} @@ -199,7 +199,7 @@ jobs: echo "Resolved release tag: $TAG_NAME" - name: Checkout code at tag - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 ref: refs/tags/${{ steps.version.outputs.tag }} @@ -249,7 +249,7 @@ jobs: echo "AWS_LC_SYS_PREBUILT_NASM=1" >> "$GITHUB_ENV" - name: Cache Gradle dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.gradle/caches @@ -350,7 +350,7 @@ jobs: echo "Artifacts filename suffix: '${SIGNED_SUFFIX}' (empty=signed, -unsigned=unsigned)" - name: Upload release package artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: app-release-package-${{ steps.version.outputs.tag }} path: output/*