@@ -8,7 +8,7 @@ This action installs 'cpanminus' then use it if needed to install some Perl Modu
88
99``` yaml 
1010- name : install cpanm and multiple modules 
11-   uses : perl-actions/install-with-cpanm@v1.1  
11+   uses : perl-actions/install-with-cpanm@v1 
1212  with :
1313    install : | 
1414      Simple::Accessor 
5353    steps :
5454      - uses : actions/checkout@v2 
5555      - name : uses install-with-cpanm 
56-         uses : perl-actions/install-with-cpanm@v1.1  
56+         uses : perl-actions/install-with-cpanm@v1 
5757        with :
5858          cpanfile : " cpanfile" 
5959          sudo : false 
122122# ## Install cpanm and use it manually later
123123
124124` ` ` yaml
125- uses: perl-actions/install-with-cpanm@v1.1  
125+ uses: perl-actions/install-with-cpanm@v1 
126126# you can then use it later 
127127run: sudo cpanm Module::To::Install 
128128` ` ` 
@@ -133,7 +133,7 @@ but you should prefer let the action install your modules
133133
134134` ` ` yaml
135135- name: install cpanm and one module 
136-   uses: perl-actions/install-with-cpanm@v1.1  
136+   uses: perl-actions/install-with-cpanm@v1 
137137  with: 
138138    install: "Simple::Accessor" 
139139` ` ` 
@@ -142,7 +142,7 @@ but you should prefer let the action install your modules
142142
143143` ` ` yaml
144144- name: install cpanm and one module 
145-   uses: perl-actions/install-with-cpanm@v1.1  
145+   uses: perl-actions/install-with-cpanm@v1 
146146  with: 
147147    install: | 
148148      Simple::Accessor 
@@ -153,7 +153,7 @@ but you should prefer let the action install your modules
153153
154154` ` ` yaml
155155- name: install cpanm and files from cpanfile 
156-   uses: perl-actions/install-with-cpanm@v1.1  
156+   uses: perl-actions/install-with-cpanm@v1 
157157  with: 
158158    cpanfile: "your-cpanfile" 
159159` ` ` 
@@ -164,7 +164,7 @@ Install modules with tests.
164164
165165` ` ` yaml
166166- name: install cpanm and files from cpanfile 
167-   uses: perl-actions/install-with-cpanm@v1.1  
167+   uses: perl-actions/install-with-cpanm@v1 
168168  with: 
169169    install: "Simple::Accessor" 
170170    tests: true 
@@ -190,7 +190,7 @@ windows:
190190
191191    - uses: actions/checkout@v2 
192192    - name: "install-with-cpanm" 
193-       uses: perl-actions/install-with-cpanm@v1.1  
193+       uses: perl-actions/install-with-cpanm@v1 
194194      with: 
195195        install: | 
196196          abbreviation 
0 commit comments