@@ -8,7 +8,7 @@ This action installs 'cpm' as root so you can then use it in your workflow.
8
8
9
9
``` yaml
10
10
- name : install cpm and multiple modules
11
- uses : perl-actions/install-cpm@v1.1
11
+ uses : perl-actions/install-cpm@v1.2
12
12
with :
13
13
install : |
14
14
Simple::Accessor
@@ -115,7 +115,7 @@ You can then use cpm yourself in order commands.
115
115
116
116
` ` ` yaml
117
117
- name: install cpm
118
- uses: perl-actions/install-cpm@v1.1
118
+ uses: perl-actions/install-cpm@v1.2
119
119
# then you can use it
120
120
- run: 'sudo cpm install -g Simple::Accessor'
121
121
` ` `
@@ -127,7 +127,7 @@ You can then use cpm yourself in order commands.
127
127
128
128
` ` ` yaml
129
129
- name: install cpm
130
- uses: perl-actions/install-cpm@v1.1
130
+ uses: perl-actions/install-cpm@v1.2
131
131
with:
132
132
version: '0.990'
133
133
` ` `
@@ -136,7 +136,7 @@ You can then use cpm yourself in order commands.
136
136
137
137
` ` ` yaml
138
138
- name: install cpm and one module
139
- uses: perl-actions/install-cpm@v1.1
139
+ uses: perl-actions/install-cpm@v1.2
140
140
with:
141
141
install: 'Simple::Accessor'
142
142
` ` `
@@ -147,7 +147,7 @@ List modules seperated by a newline character `\n`
147
147
148
148
` ` ` yaml
149
149
- name: install cpm and multiple modules
150
- uses: perl-actions/install-cpm@v1.1
150
+ uses: perl-actions/install-cpm@v1.2
151
151
with:
152
152
install: |
153
153
Simple::Accessor
@@ -158,7 +158,7 @@ List modules seperated by a newline character `\n`
158
158
159
159
` ` ` yaml
160
160
- name: install cpm and files from cpanfile
161
- uses: perl-actions/install-cpm@v1.1
161
+ uses: perl-actions/install-cpm@v1.2
162
162
with:
163
163
cpanfile: 'your-cpanfile'
164
164
` ` `
@@ -169,7 +169,7 @@ Install modules with tests.
169
169
170
170
` ` ` yaml
171
171
- name: install cpm and files from cpanfile
172
- uses: perl-actions/install-cpm@v1.1
172
+ uses: perl-actions/install-cpm@v1.2
173
173
with:
174
174
install: 'Simple::Accessor'
175
175
tests: true
@@ -181,7 +181,7 @@ Disable the `-g` flag.
181
181
182
182
` ` ` yaml
183
183
- name: install cpm and files from cpanfile
184
- uses: perl-actions/install-cpm@v1.1
184
+ uses: perl-actions/install-cpm@v1.2
185
185
with:
186
186
install: 'Simple::Accessor'
187
187
global: false
@@ -192,7 +192,7 @@ Disable the `-g` flag.
192
192
193
193
` ` ` yaml
194
194
- name: 'install cpm + cpanfile with args'
195
- uses: perl-actions/install-cpm@v1.1
195
+ uses: perl-actions/install-cpm@v1.2
196
196
with:
197
197
cpanfile: 'your-cpanfile'
198
198
args: '--with-recommends --with-suggests'
0 commit comments