We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d08157 commit daa556eCopy full SHA for daa556e
1 file changed
action.yml
@@ -15,6 +15,10 @@ inputs:
15
version-file:
16
type: string
17
description: a versions file (e.g. as used by `asdf`), which defines inputs
18
+ version-type:
19
+ type: string
20
+ description: strict means the versions are take as-are; loose means we try
21
+ to guess versions based on semver rules
22
23
# Optional inputs
24
build-deps:
@@ -68,8 +72,10 @@ runs:
68
72
uses: erlef/setup-beam@v1
69
73
id: beam
70
74
with:
71
- version-type: strict
75
+ version-type: ${{ inputs.version-type }}
76
version-file: ${{ inputs.version-file }}
77
+ elixir-version: ${{ inputs.elixir-version }}
78
+ otp-version: ${{ inputs.otp-version }}
79
80
- name: Get deps cache
81
uses: actions/cache@v4
0 commit comments