Skip to content

Commit 83d04ab

Browse files
committed
Project: Uprev to v2.0.0
1 parent 7ce2c2d commit 83d04ab

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ In its simplest form you can you indicate what file to download and use it:
2525

2626
```yaml
2727
- name: Download a file
28-
uses: carlosperate/download-file-action@v1
28+
uses: carlosperate/download-file-action@v2
2929
with:
3030
file-url: 'https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py'
3131
- name: Check the file is there
@@ -36,7 +36,7 @@ To use all the options:
3636
3737
```yml
3838
- name: Download a file
39-
uses: carlosperate/download-file-action@v1
39+
uses: carlosperate/download-file-action@v2
4040
id: download-file
4141
with:
4242
file-url: 'https://github.com/carlosperate/download-file-action/archive/refs/tags/v1.0.3.tar.gz'

dev-docs.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,18 @@
33
## Update v1 tag
44

55
```
6+
git switch v1-backports
67
git tag -fa v1 -m "Update v1 tag"
78
git push origin v1 --force
89
```
910

11+
## Update v2 tag
12+
```
13+
git switch master
14+
git tag -fa v2 -m "Update v2 tag"
15+
git push origin v2 --force
16+
```
17+
1018
## Updating packages
1119

1220
This is a list of some breaking changes encountered when updating some of the

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "download-file-action",
3-
"version": "1.1.1",
3+
"version": "2.0.0",
44
"description": "GitHub Action to download a file from the internet into the workspace to use in your workflow.",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)