You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: action.yml
+2-12Lines changed: 2 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -7,37 +7,27 @@ branding:
7
7
inputs:
8
8
ruby-version:
9
9
description: 'Engine and version to use, see the syntax in the README. Reads from .ruby-version or .tool-versions if unset.'
10
-
required: false
11
10
default: 'default'
12
11
rubygems:
13
12
description: |
14
-
The version of RubyGems to use. Either 'default', 'latest', or a version number (e.g., 3.3.5).
13
+
The version of RubyGems to use. Either 'default' (the default), 'latest', or a version number (e.g., 3.3.5).
15
14
For 'default', no action is taken and the version of RubyGems that comes with Ruby by default is used.
16
15
For 'latest', `gem update --system` is run to update to the latest RubyGems version.
17
16
Similarly, if a version number is given, `gem update --system <version>` is run to update to that version of RubyGems, as long as that version is newer than the one provided by default.
18
-
required: false
19
-
default: 'default'
20
17
bundler:
21
18
description: |
22
19
The version of Bundler to install. Either 'none', 'latest', 'Gemfile.lock', or a version number (e.g., 1, 2, 2.1, 2.1.4).
23
20
For 'Gemfile.lock', the version is determined based on the BUNDLED WITH section from the file Gemfile.lock, $BUNDLE_GEMFILE.lock or gems.locked.
24
-
Defaults to 'Gemfile.lock' if the file exists and 'latest' otherwise.
25
-
required: false
26
-
default: 'default'
21
+
Defaults to 'default', which means 'Gemfile.lock' if the file exists and 'latest' otherwise.
27
22
bundler-cache:
28
23
description: 'Run "bundle install", and cache the result automatically. Either true or false.'
29
-
required: false
30
24
default: 'false'
31
25
working-directory:
32
26
description: 'The working directory to use for resolving paths for .ruby-version, .tool-versions and Gemfile.lock.'
33
-
required: false
34
-
default: '.'
35
27
cache-version:
36
28
description: |
37
29
Arbitrary string that will be added to the cache key of the bundler cache. Set or change it if you need
0 commit comments