From 2f44e7c5310c6c319c0567c1505f295fb8db97f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Apr 2026 08:44:26 +0000 Subject: [PATCH 1/3] chore(deps): bump addressable from 2.8.0 to 2.9.0 Bumps [addressable](https://github.com/sporkmonger/addressable) from 2.8.0 to 2.9.0. - [Changelog](https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md) - [Commits](https://github.com/sporkmonger/addressable/compare/addressable-2.8.0...addressable-2.9.0) --- updated-dependencies: - dependency-name: addressable dependency-version: 2.9.0 dependency-type: indirect ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 00aee095b..b198bc313 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,8 +2,8 @@ GEM remote: https://rubygems.org/ specs: CFPropertyList (3.0.3) - addressable (2.8.0) - public_suffix (>= 2.0.2, < 5.0) + addressable (2.9.0) + public_suffix (>= 2.0.2, < 8.0) atomos (0.1.3) aws-eventstream (1.1.0) aws-partitions (1.413.0) @@ -126,7 +126,7 @@ GEM naturally (2.2.0) os (1.1.1) plist (3.5.0) - public_suffix (4.0.6) + public_suffix (7.0.5) rake (13.0.3) representable (3.0.4) declarative (< 0.1.0) From 27f5aa83ea1067f6b592434e3247cdc165233aa5 Mon Sep 17 00:00:00 2001 From: Kamo Spertsyan Date: Wed, 8 Apr 2026 12:50:54 +0300 Subject: [PATCH 2/3] chore(ci): update Ruby to 3.3 and bump GitHub Actions versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ruby 2.6 is incompatible with public_suffix 7.x (required by addressable 2.9.0). Also updates actions/checkout v2→v6, actions/setup-java v1→v5, maierj/fastlane-action v1.4.0→v3. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/pr-checks.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index b74d07141..a090dab5f 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -10,12 +10,13 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - name: set up JDK 18 - uses: actions/setup-java@v1 + uses: actions/setup-java@v5 with: java-version: 18 + distribution: temurin - name: Make gradlew executable run: chmod +x ./gradlew @@ -23,16 +24,16 @@ jobs: - name: Detekt run: ./gradlew detektAll - - name: Set up Ruby 2.6 + - name: Set up Ruby 3.3 uses: ruby/setup-ruby@v1 with: - ruby-version: 2.6.0 + ruby-version: '3.3' - name: Install dependencies run: bundle install - name: Fastlane Action - uses: maierj/fastlane-action@v1.4.0 + uses: maierj/fastlane-action@v3 with: lane: test - name: Build and Tests From 46f97d59202f23c3878cccaf223dbfafb5c0f722 Mon Sep 17 00:00:00 2001 From: Kamo Spertsyan Date: Wed, 8 Apr 2026 12:56:12 +0300 Subject: [PATCH 3/3] fix(ci): use exact version for fastlane-action (v3.1.0) maierj/fastlane-action doesn't have a v3 major version tag, only specific versions like v3.1.0. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/pr-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index a090dab5f..d4c05fd36 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -33,7 +33,7 @@ jobs: run: bundle install - name: Fastlane Action - uses: maierj/fastlane-action@v3 + uses: maierj/fastlane-action@v3.1.0 with: lane: test - name: Build and Tests