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