Skip to content

Commit

Permalink
Update more examples with references to the latest versions of core a…
Browse files Browse the repository at this point in the history
…ctions
  • Loading branch information
Andarist committed Dec 5, 2022
1 parent da3a687 commit 595655c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Node.js 12.x
uses: actions/setup-node@v2
- name: Setup Node.js 16.x

This comment has been minimized.

Copy link
@allbetter-max

allbetter-max Dec 5, 2022

Contributor

@Andarist any reason to use 16.x instead of just 16 notation?

This comment has been minimized.

Copy link
@Andarist

Andarist Dec 5, 2022

Author Member

Not rly, I've just replaced 12 to 16 - .x part was already here 😉

uses: actions/setup-node@v3
with:
node-version: 12.x
node-version: 16.x

- name: Install Dependencies
run: yarn
Expand Down Expand Up @@ -142,12 +142,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Node.js 12.x
uses: actions/setup-node@v2
- name: Setup Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 12.x
node-version: 16.x

- name: Install Dependencies
run: yarn
Expand Down Expand Up @@ -186,12 +186,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Node.js 12.x
uses: actions/setup-node@v2
- name: Setup Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 12.x
node-version: 16.x

- name: Install Dependencies
run: yarn
Expand Down

0 comments on commit 595655c

Please sign in to comment.