@@ -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-with-cpm@v1.2  
11+   uses : perl-actions/install-with-cpm@v1.3  
1212  with :
1313    install : | 
1414      Simple::Accessor 
5454    steps :
5555      - uses : actions/checkout@v2 
5656      - name : uses install-with-cpm 
57-         uses : perl-actions/install-with-cpm@v1.2  
57+         uses : perl-actions/install-with-cpm@v1.3  
5858        with :
5959          cpanfile : " cpanfile" 
6060          sudo : false 
@@ -117,7 +117,7 @@ You can then use cpm yourself in order commands.
117117
118118` ` ` yaml
119119- name: install cpm 
120-   uses: perl-actions/install-with-cpm@v1.2  
120+   uses: perl-actions/install-with-cpm@v1.3  
121121# then you can use it 
122122- run: "sudo cpm install -g Simple::Accessor" 
123123` ` ` 
@@ -129,7 +129,7 @@ You can then use cpm yourself in order commands.
129129
130130` ` ` yaml
131131- name: install cpm 
132-   uses: perl-actions/install-with-cpm@v1.2  
132+   uses: perl-actions/install-with-cpm@v1.3  
133133  with: 
134134    version: "0.990" 
135135` ` ` 
@@ -138,7 +138,7 @@ You can then use cpm yourself in order commands.
138138
139139` ` ` yaml
140140- name: install cpm and one module 
141-   uses: perl-actions/install-with-cpm@v1.2  
141+   uses: perl-actions/install-with-cpm@v1.3  
142142  with: 
143143    install: "Simple::Accessor" 
144144` ` ` 
@@ -149,7 +149,7 @@ List modules seperated by a newline character `\n`
149149
150150` ` ` yaml
151151- name: install cpm and multiple modules 
152-   uses: perl-actions/install-with-cpm@v1.2  
152+   uses: perl-actions/install-with-cpm@v1.3  
153153  with: 
154154    install: | 
155155      Simple::Accessor 
@@ -160,7 +160,7 @@ List modules seperated by a newline character `\n`
160160
161161` ` ` yaml
162162- name: install cpm and files from cpanfile 
163-   uses: perl-actions/install-with-cpm@v1.2  
163+   uses: perl-actions/install-with-cpm@v1.3  
164164  with: 
165165    cpanfile: "your-cpanfile" 
166166` ` ` 
@@ -171,7 +171,7 @@ Install modules with tests.
171171
172172` ` ` yaml
173173- name: install cpm and files from cpanfile 
174-   uses: perl-actions/install-with-cpm@v1.2  
174+   uses: perl-actions/install-with-cpm@v1.3  
175175  with: 
176176    install: "Simple::Accessor" 
177177    tests: true 
@@ -183,7 +183,7 @@ Disable the `-g` flag.
183183
184184` ` ` yaml
185185- name: install cpm and files from cpanfile 
186-   uses: perl-actions/install-with-cpm@v1.2  
186+   uses: perl-actions/install-with-cpm@v1.3  
187187  with: 
188188    install: "Simple::Accessor" 
189189    global: false 
@@ -194,7 +194,7 @@ Disable the `-g` flag.
194194
195195` ` ` yaml
196196- name: "install cpm + cpanfile with args" 
197-   uses: perl-actions/install-with-cpm@v1.2  
197+   uses: perl-actions/install-with-cpm@v1.3  
198198  with: 
199199    cpanfile: "your-cpanfile" 
200200    args: "--with-recommends --with-suggests" 
@@ -221,7 +221,7 @@ Here is a sample job using cpm to install modules on windows.
221221      - uses: actions/checkout@v2 
222222      - name: "install-with-cpm" 
223223
224-         uses: perl-actions/install-with-cpm@v1.2  
224+         uses: perl-actions/install-with-cpm@v1.3  
225225        with: 
226226          install: | 
227227            abbreviation 
0 commit comments