Skip to content

Commit ba4d22f

Browse files
authored
Merge pull request #86 from actions/nishthaGupta-patch-1
Update version in readme
2 parents 9a08425 + 22f216e commit ba4d22f

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
1717
# Usage
1818

1919
```yaml
20-
- uses: actions/delete-package-versions@v3
20+
- uses: actions/delete-package-versions@v4
2121
with:
2222
# Can be a single package version id, or a comma separated list of package version ids.
2323
# Defaults to an empty string.
@@ -107,7 +107,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
107107
Delete all pre-release package versions except latest 10
108108

109109
```yaml
110-
- uses: actions/delete-package-versions@v3
110+
- uses: actions/delete-package-versions@v4
111111
with:
112112
package-name: 'test-package'
113113
package-type: 'npm'
@@ -121,7 +121,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
121121
Delete all pre-release package versions except latest 10 from a repo not having access to package
122122

123123
```yaml
124-
- uses: actions/delete-package-versions@v3
124+
- uses: actions/delete-package-versions@v4
125125
with:
126126
owner: 'github'
127127
package-name: 'test-package'
@@ -142,7 +142,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
142142
Delete all except latest 3 package versions excluding major versions as per semver
143143

144144
```yaml
145-
- uses: actions/delete-package-versions@v3
145+
- uses: actions/delete-package-versions@v4
146146
with:
147147
package-name: 'test-package'
148148
package-type: 'npm'
@@ -159,7 +159,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
159159
Delete all except latest 3 package versions excluding major versions as per semver from a repo not having access to package
160160

161161
```yaml
162-
- uses: actions/delete-package-versions@v3
162+
- uses: actions/delete-package-versions@v4
163163
with:
164164
owner: 'github'
165165
package-name: 'test-package'
@@ -182,7 +182,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
182182
Delete 3 oldest versions excluding major versions as per semver
183183

184184
```yaml
185-
- uses: actions/delete-package-versions@v3
185+
- uses: actions/delete-package-versions@v4
186186
with:
187187
package-name: 'test-package'
188188
package-type: 'npm'
@@ -199,7 +199,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
199199
Delete 3 oldest versions excluding major versions as per semver from a repo not having access to package
200200

201201
```yaml
202-
- uses: actions/delete-package-versions@v3
202+
- uses: actions/delete-package-versions@v4
203203
with:
204204
owner: 'github'
205205
package-name: 'test-package'
@@ -220,7 +220,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
220220
Delete all except latest 2 versions of a package hosted
221221

222222
```yaml
223-
- uses: actions/delete-package-versions@v3
223+
- uses: actions/delete-package-versions@v4
224224
with:
225225
package-name: 'test-package'
226226
package-type: 'npm'
@@ -236,7 +236,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
236236
Delete all except latest 2 versions of a package hosted from a repo not having access to package
237237

238238
```yaml
239-
- uses: actions/delete-package-versions@v3
239+
- uses: actions/delete-package-versions@v4
240240
with:
241241
owner: 'github'
242242
package-name: 'test-package'
@@ -256,7 +256,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
256256
Delete the oldest 3 version of a package hosted
257257

258258
```yaml
259-
- uses: actions/delete-package-versions@v3
259+
- uses: actions/delete-package-versions@v4
260260
with:
261261
package-name: 'test-package'
262262
package-type: 'npm'
@@ -272,7 +272,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
272272
Delete the oldest 3 version of a package hosted from a repo not having access to package
273273

274274
```yaml
275-
- uses: actions/delete-package-versions@v3
275+
- uses: actions/delete-package-versions@v4
276276
with:
277277
owner: 'github'
278278
package-name: 'test-package'
@@ -290,7 +290,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
290290
__Example__
291291

292292
```yaml
293-
- uses: actions/delete-package-versions@v3
293+
- uses: actions/delete-package-versions@v4
294294
with:
295295
package-name: 'test-package'
296296
package-type: 'npm'
@@ -301,7 +301,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
301301
__Example__
302302

303303
```yaml
304-
- uses: actions/delete-package-versions@v3
304+
- uses: actions/delete-package-versions@v4
305305
with:
306306
owner: 'github'
307307
package-name: 'test-package'
@@ -320,7 +320,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
320320
__Example__
321321

322322
```yaml
323-
- uses: actions/delete-package-versions@v3
323+
- uses: actions/delete-package-versions@v4
324324
with:
325325
package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3'
326326
package-name: 'test-package'
@@ -334,7 +334,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
334334
__Example__
335335

336336
```yaml
337-
- uses: actions/delete-package-versions@v3
337+
- uses: actions/delete-package-versions@v4
338338
with:
339339
package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3'
340340
package-name: 'test-package'
@@ -353,7 +353,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
353353
__Example__
354354

355355
```yaml
356-
- uses: actions/delete-package-versions@v3
356+
- uses: actions/delete-package-versions@v4
357357
with:
358358
package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzQ5, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzUw'
359359
package-name: 'test-package'
@@ -367,7 +367,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
367367
__Example__
368368

369369
```yaml
370-
- uses: actions/delete-package-versions@v3
370+
- uses: actions/delete-package-versions@v4
371371
with:
372372
package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzQ5, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzUw'
373373
package-name: 'test-package'

0 commit comments

Comments
 (0)