Skip to content

Commit

Permalink
ci(node): Updated actions to use node 14 (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkMizenSagecom authored May 10, 2021
1 parent 48a73cb commit ee516cf
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:
steps:
- name: Check out Git repository
uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install
run: yarn install --frozen-lockfile
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
fetch-depth: 0
persist-credentials: true

- uses: actions/setup-node@v2
with:
node-version: '14'

- uses: actions/setup-node@v1
with:
node-version: '12'
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/update-tokens.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: '14'

- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
Expand Down

0 comments on commit ee516cf

Please sign in to comment.