Skip to content

Commit

Permalink
(chore) Resolve some Node 12 deprecation messages
Browse files Browse the repository at this point in the history
  • Loading branch information
jherdman committed Oct 24, 2022
1 parent 2c02f17 commit 8a8366a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-bsvg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
name: Lint and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '${{ env.NODE_VERSION }}'

Expand All @@ -28,7 +28,7 @@ jobs:

- name: Cache package manager's global cache and node_modules
id: cache-dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
${{ steps.global-cache-dir-path.outputs.dir }}
Expand Down
27 changes: 14 additions & 13 deletions .github/workflows/ci-ember-svg-jar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '${{ env.NODE_VERSION }}'

Expand All @@ -59,7 +59,7 @@ jobs:

- name: Cache package manager's global cache and node_modules
id: cache-dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
${{ steps.global-cache-dir-path.outputs.dir }}
Expand Down Expand Up @@ -87,11 +87,11 @@ jobs:
browser: [Chrome]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '${{ env.NODE_VERSION }}'

Expand All @@ -101,7 +101,7 @@ jobs:

- name: Cache package manager's global cache and node_modules
id: cache-dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
${{ steps.global-cache-dir-path.outputs.dir }}
Expand Down Expand Up @@ -131,11 +131,11 @@ jobs:
browser: [Chrome]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '${{ env.NODE_VERSION }}'

Expand All @@ -145,7 +145,7 @@ jobs:

- name: Cache package manager's global cache and node_modules
id: cache-dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
${{ steps.global-cache-dir-path.outputs.dir }}
Expand All @@ -171,7 +171,8 @@ jobs:
strategy:
fail-fast: true
matrix:
ember-try-scenario: [
ember-try-scenario:
[
ember-lts-3.20,
ember-lts-3.24,
ember-lts-3.28,
Expand All @@ -185,11 +186,11 @@ jobs:
]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 1

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '${{ env.NODE_VERSION }}'

Expand All @@ -199,7 +200,7 @@ jobs:

- name: Cache package manager's global cache and node_modules
id: cache-dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
${{ steps.global-cache-dir-path.outputs.dir }}
Expand Down

0 comments on commit 8a8366a

Please sign in to comment.