Skip to content

Commit 6773ad2

Browse files
committed
docs(README): update examples
1 parent 06d5ce7 commit 6773ad2

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ If you want to make some changes, you have to checkout the branch the PR is comi
165165
You can set it up like this:
166166

167167
```yaml
168-
- uses: actions/checkout@v2
168+
- uses: actions/checkout@v3
169169
with:
170170
repository: ${{ github.event.pull_request.head.repo.full_name }}
171171
ref: ${{ github.event.pull_request.head.ref }}
@@ -268,12 +268,10 @@ jobs:
268268
runs-on: ubuntu-latest
269269
steps:
270270
- name: Checkout repo
271-
uses: actions/checkout@v2
271+
uses: actions/checkout@v3
272272
273273
- name: Set up Node.js
274-
uses: actions/setup-node@v1
275-
with:
276-
node-version: 12.x
274+
uses: actions/setup-node@v3
277275
278276
- name: Install dependencies
279277
run: npm install
@@ -305,7 +303,7 @@ jobs:
305303
306304
steps:
307305
# If you need to, you can check out your repo to a different location
308-
- uses: actions/checkout@v2
306+
- uses: actions/checkout@v3
309307
with:
310308
path: './pathToRepo/'
311309

0 commit comments

Comments
 (0)