Skip to content

Commit

Permalink
chore: bump node version to 18 (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmaklygin authored Oct 12, 2023
1 parent 3142bd3 commit 772025f
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .changeset/slimy-elephants-impress.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'davinci-github-actions': major
---

- bump node version to 18
4 changes: 2 additions & 2 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Setup Node.js 16.x
- name: Setup Node.js 18.x
uses: actions/[email protected]
with:
node-version: 16
node-version: 18

- uses: ./yarn-install

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup node
uses: actions/[email protected]
with:
node-version: 16
node-version: 18

- uses: ./yarn-install

Expand Down
2 changes: 1 addition & 1 deletion build-publish-alpha-package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
- name: Setup node
uses: actions/[email protected]
with:
node-version: 16
node-version: 18

- uses: toptal/davinci-github-actions/[email protected]

Expand Down
2 changes: 1 addition & 1 deletion build-push-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ runs:
- name: Setup node
uses: actions/[email protected]
with:
node-version: 16
node-version: 18

- id: meta-latest
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion create-matrix/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ outputs:
description: Information about current repository || boolean

runs:
using: node16
using: node18
main: dist/index.js
2 changes: 1 addition & 1 deletion deploy-storybook/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ runs:
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Install Dependencies
if: ${{ inputs.use-prebuilt-package == 'false' && inputs.use-prebuilt-image == 'false' }}
Expand Down
2 changes: 1 addition & 1 deletion get-changeset-info/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ outputs:
description: Packages that have changed but are missing in changesets || Array<string>

runs:
using: node16
using: node18
main: dist/index.js
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"description": "",
"author": "Toptal",
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"documentation:generate": "ncc run _scripts/documentation/generate.ts -C",
"release": "changeset tag",
Expand Down
2 changes: 1 addition & 1 deletion report-affected-packages/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
steps:
- uses: actions/[email protected]
with:
node-version: 16
node-version: 18

- uses: masesgroup/retrieve-changed-files@2e42889ff54e0810cf088f73a38a2db5a9d0684f
id: files
Expand Down

0 comments on commit 772025f

Please sign in to comment.