Skip to content

Commit

Permalink
fix: update to node 16 because node 12 actions are deprecated
Browse files Browse the repository at this point in the history
[Fixes #184066476]
  • Loading branch information
ianwremmel committed Mar 8, 2023
1 parent d59cc4a commit a75ee1e
Show file tree
Hide file tree
Showing 5 changed files with 378 additions and 670 deletions.
3 changes: 1 addition & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ updates:
directory: "/"
ignore:
- dependency-name: "@types/node"
versions:
- "> 14"
update-types: ['version-update:semver-major']
schedule:
interval: "daily"
versioning-strategy: "increase"
9 changes: 4 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '16'
cache: 'npm'
- run: npm i -g npm@7
- run: npm ci
- run: npm run build
- uses: actions/upload-artifact@v2
Expand All @@ -53,7 +52,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '16'
cache: 'npm'
- uses: actions/download-artifact@v2
with:
Expand Down Expand Up @@ -91,7 +90,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '16'
cache: 'npm'
- uses: actions/download-artifact@v2
with:
Expand Down Expand Up @@ -157,7 +156,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '16'
cache: 'npm'
- run: npm i -g npm@7
- run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion integrations/action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ outputs:
tests:
description: The names of the test files to test on this node
runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'
Loading

0 comments on commit a75ee1e

Please sign in to comment.