Skip to content

Commit d972a82

Browse files
committed
docs: prepare for v3
1 parent f6af013 commit d972a82

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You have to set up a step like this in your workflow (this assumes you've alread
1818

1919
```yaml
2020
- id: check # This will be the reference for getting the outputs.
21-
uses: EndBug/version-check@v2 # You can choose the version/branch you prefer.
21+
uses: EndBug/version-check@v3 # You can choose the version/branch you prefer.
2222

2323
with:
2424
# All these parameters are optional,
@@ -97,7 +97,7 @@ Here's an example:
9797
```yaml
9898
- name: Check if version has been updated
9999
id: check
100-
uses: EndBug/version-check@v2
100+
uses: EndBug/version-check@v3
101101
102102
- name: Log when changed
103103
if: steps.check.outputs.changed == 'true'
@@ -126,7 +126,7 @@ If you want to check whether the version has changed since your last published v
126126

127127
```yaml
128128
- id: check
129-
uses: EndBug/version-check@v2
129+
uses: EndBug/version-check@v3
130130
with:
131131
file-url: https://unpkg.com/your-package@latest/package.json
132132
static-checking: localIsNew

doc/auto-publish-example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
ref: main
1818

1919
- name: Check version changes
20-
uses: EndBug/version-check@v2
20+
uses: EndBug/version-check@v3
2121
id: check
2222

2323
- name: Version update detected

doc/auto-publish-walkthrough.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ steps:
6464
ref: main
6565
6666
- name: Check version changes
67-
uses: EndBug/version-check@v2 # More info about the arguments on the action page
67+
uses: EndBug/version-check@v3 # More info about the arguments on the action page
6868
id: check # This will be the reference for later
6969
```
7070

0 commit comments

Comments
 (0)