From 3d878e8658132f24af900614daec273d38307675 Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Fri, 31 Jan 2025 15:07:04 -0500 Subject: [PATCH] build: rework ruby version in ci + v0.1.1 (#32) * build: rework ruby version in ci + v0.1.1 * chore: CI uses older ruby version --- .github/workflows/deploy.yml | 9 ++------- .github/workflows/test.yml | 12 ++---------- lib/fastlane/plugin/maestro_orchestration/version.rb | 2 +- 3 files changed, 5 insertions(+), 18 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3749ed3..b94c0b2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,16 +12,11 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/cache@v4 - with: - path: vendor/bundle - key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile') }} - restore-keys: ${{ runner.os }}-gem- - - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 2.7 + bundler-cache: true + ruby-version: ruby - name: Install dependencies run: bundle check || bundle install --jobs=4 --retry=3 --path vendor/bundle diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e78caf7..f0b02a4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,19 +9,11 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/cache@v4 - with: - path: vendor/bundle - key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile') }} - restore-keys: ${{ runner.os }}-gem- - - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 2.7 - - - name: Install dependencies - run: bundle check || bundle install --jobs=4 --retry=3 --path vendor/bundle + bundler-cache: true + ruby-version: 2.7.7 - name: Run tests run: bundle exec rake diff --git a/lib/fastlane/plugin/maestro_orchestration/version.rb b/lib/fastlane/plugin/maestro_orchestration/version.rb index e2864a2..e83300f 100644 --- a/lib/fastlane/plugin/maestro_orchestration/version.rb +++ b/lib/fastlane/plugin/maestro_orchestration/version.rb @@ -1,5 +1,5 @@ module Fastlane module MaestroOrchestration - VERSION = "0.1.0" + VERSION = "0.1.1" end end