-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update more examples with references to the latest versions of core a…
…ctions
- Loading branch information
Showing
1 changed file
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
Andarist
Author
Member
|
||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 12.x | ||
node-version: 16.x | ||
- name: Install Dependencies | ||
run: yarn | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@Andarist any reason to use
16.x
instead of just16
notation?