Bumps the github-actions-updates group with 1 update in the /.github/actions/prepare-mobile-build directory: [ruby/setup-ruby](https://github.com/ruby/setup-ruby). Bumps the github-actions-updates group with 1 update in the /.github/workflows directory: [ruby/setup-ruby](https://github.com/ruby/setup-ruby). Updates `ruby/setup-ruby` from 1.238.0 to 1.242.0 - [Release notes](https://github.com/ruby/setup-ruby/releases) - [Changelog](https://github.com/ruby/setup-ruby/blob/master/release.rb) - [Commits](e34163cd15...cb0fda56a3) Updates `ruby/setup-ruby` from 1.238.0 to 1.242.0 - [Release notes](https://github.com/ruby/setup-ruby/releases) - [Changelog](https://github.com/ruby/setup-ruby/blob/master/release.rb) - [Commits](e34163cd15...cb0fda56a3) --- updated-dependencies: - dependency-name: ruby/setup-ruby dependency-version: 1.242.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-updates - dependency-name: ruby/setup-ruby dependency-version: 1.242.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-updates ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
835 B
YAML
27 lines
835 B
YAML
name: prepare-mobile-build
|
|
description: Action to prepare environment for mobile build
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
# The required ruby version is mentioned in '.ruby-version'
|
|
- uses: ruby/setup-ruby@cb0fda56a307b8c78d38320cd40d9eb22a3bf04e # v1.242.0
|
|
|
|
- name: ci/setup-fastlane-dependencies
|
|
shell: bash
|
|
run: |
|
|
echo "::group::setup-fastlane-dependencies"
|
|
bundle install
|
|
echo "::endgroup::"
|
|
working-directory: ./fastlane
|
|
|
|
- name: Cache Ruby gems
|
|
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
|
with:
|
|
path: vendor/bundle
|
|
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gems-
|
|
|
|
- name: ci/prepare-node-deps
|
|
uses: ./.github/actions/prepare-node-deps
|