@@ -8,7 +8,7 @@ This action installs 'cpm' as root so you can then use it in your workflow.
88
99``` yaml
1010- name : install cpm and multiple modules
11- uses : perl-actions/install-cpm@v1.1
11+ uses : perl-actions/install-cpm@v1.2
1212 with :
1313 install : |
1414 Simple::Accessor
@@ -115,7 +115,7 @@ You can then use cpm yourself in order commands.
115115
116116` ` ` yaml
117117- name: install cpm
118- uses: perl-actions/install-cpm@v1.1
118+ uses: perl-actions/install-cpm@v1.2
119119# then you can use it
120120- run: 'sudo cpm install -g Simple::Accessor'
121121` ` `
@@ -127,7 +127,7 @@ You can then use cpm yourself in order commands.
127127
128128` ` ` yaml
129129- name: install cpm
130- uses: perl-actions/install-cpm@v1.1
130+ uses: perl-actions/install-cpm@v1.2
131131 with:
132132 version: '0.990'
133133` ` `
@@ -136,7 +136,7 @@ You can then use cpm yourself in order commands.
136136
137137` ` ` yaml
138138- name: install cpm and one module
139- uses: perl-actions/install-cpm@v1.1
139+ uses: perl-actions/install-cpm@v1.2
140140 with:
141141 install: 'Simple::Accessor'
142142` ` `
@@ -147,7 +147,7 @@ List modules seperated by a newline character `\n`
147147
148148` ` ` yaml
149149- name: install cpm and multiple modules
150- uses: perl-actions/install-cpm@v1.1
150+ uses: perl-actions/install-cpm@v1.2
151151 with:
152152 install: |
153153 Simple::Accessor
@@ -158,7 +158,7 @@ List modules seperated by a newline character `\n`
158158
159159` ` ` yaml
160160- name: install cpm and files from cpanfile
161- uses: perl-actions/install-cpm@v1.1
161+ uses: perl-actions/install-cpm@v1.2
162162 with:
163163 cpanfile: 'your-cpanfile'
164164` ` `
@@ -169,7 +169,7 @@ Install modules with tests.
169169
170170` ` ` yaml
171171- name: install cpm and files from cpanfile
172- uses: perl-actions/install-cpm@v1.1
172+ uses: perl-actions/install-cpm@v1.2
173173 with:
174174 install: 'Simple::Accessor'
175175 tests: true
@@ -181,7 +181,7 @@ Disable the `-g` flag.
181181
182182` ` ` yaml
183183- name: install cpm and files from cpanfile
184- uses: perl-actions/install-cpm@v1.1
184+ uses: perl-actions/install-cpm@v1.2
185185 with:
186186 install: 'Simple::Accessor'
187187 global: false
@@ -192,7 +192,7 @@ Disable the `-g` flag.
192192
193193` ` ` yaml
194194- name: 'install cpm + cpanfile with args'
195- uses: perl-actions/install-cpm@v1.1
195+ uses: perl-actions/install-cpm@v1.2
196196 with:
197197 cpanfile: 'your-cpanfile'
198198 args: '--with-recommends --with-suggests'
0 commit comments