We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e06018d commit aa07c81Copy full SHA for aa07c81
.github/workflows/tooling_mend_ruby.yml
@@ -14,6 +14,11 @@ on:
14
product_name:
15
default: 'DevX'
16
type: string
17
+ ruby_version:
18
+ description: "The target Ruby version."
19
+ required: false
20
+ default: "2.7"
21
+ type: "string"
22
23
env:
24
MEND_API_KEY: ${{ secrets.MEND_API_KEY != '' && secrets.MEND_API_KEY || inputs.api_key }}
@@ -47,7 +52,7 @@ jobs:
47
52
if: success()
48
53
uses: "ruby/setup-ruby@v1"
49
54
with:
50
- ruby-version: 2.7
55
+ ruby-version: ${{ inputs.ruby_version }}
51
56
57
- name: "bundle lock"
58
0 commit comments