@@ -8,7 +8,7 @@ This action installs 'cpanminus' then use it if needed to install some Perl Modu
8
8
9
9
``` yaml
10
10
- name : install cpanm and multiple modules
11
- uses : perl-actions/install-with-cpanm@v1.1
11
+ uses : perl-actions/install-with-cpanm@v1
12
12
with :
13
13
install : |
14
14
Simple::Accessor
53
53
steps :
54
54
- uses : actions/checkout@v2
55
55
- name : uses install-with-cpanm
56
- uses : perl-actions/install-with-cpanm@v1.1
56
+ uses : perl-actions/install-with-cpanm@v1
57
57
with :
58
58
cpanfile : " cpanfile"
59
59
sudo : false
122
122
# ## Install cpanm and use it manually later
123
123
124
124
` ` ` yaml
125
- uses: perl-actions/install-with-cpanm@v1.1
125
+ uses: perl-actions/install-with-cpanm@v1
126
126
# you can then use it later
127
127
run: sudo cpanm Module::To::Install
128
128
` ` `
@@ -133,7 +133,7 @@ but you should prefer let the action install your modules
133
133
134
134
` ` ` yaml
135
135
- name: install cpanm and one module
136
- uses: perl-actions/install-with-cpanm@v1.1
136
+ uses: perl-actions/install-with-cpanm@v1
137
137
with:
138
138
install: "Simple::Accessor"
139
139
` ` `
@@ -142,7 +142,7 @@ but you should prefer let the action install your modules
142
142
143
143
` ` ` yaml
144
144
- name: install cpanm and one module
145
- uses: perl-actions/install-with-cpanm@v1.1
145
+ uses: perl-actions/install-with-cpanm@v1
146
146
with:
147
147
install: |
148
148
Simple::Accessor
@@ -153,7 +153,7 @@ but you should prefer let the action install your modules
153
153
154
154
` ` ` yaml
155
155
- name: install cpanm and files from cpanfile
156
- uses: perl-actions/install-with-cpanm@v1.1
156
+ uses: perl-actions/install-with-cpanm@v1
157
157
with:
158
158
cpanfile: "your-cpanfile"
159
159
` ` `
@@ -164,7 +164,7 @@ Install modules with tests.
164
164
165
165
` ` ` yaml
166
166
- name: install cpanm and files from cpanfile
167
- uses: perl-actions/install-with-cpanm@v1.1
167
+ uses: perl-actions/install-with-cpanm@v1
168
168
with:
169
169
install: "Simple::Accessor"
170
170
tests: true
@@ -190,7 +190,7 @@ windows:
190
190
191
191
- uses: actions/checkout@v2
192
192
- name: "install-with-cpanm"
193
- uses: perl-actions/install-with-cpanm@v1.1
193
+ uses: perl-actions/install-with-cpanm@v1
194
194
with:
195
195
install: |
196
196
abbreviation
0 commit comments