Skip to content

Commit

Permalink
Update to use node16 (#49)
Browse files Browse the repository at this point in the history
* Update to use node16

* Bump version

* Update actions/checkout to version on node16

* Update unit test workflow too

* Set version to 1.13
  • Loading branch information
jwlawson committed Oct 10, 2022
1 parent 48fb828 commit 4f73d30
Show file tree
Hide file tree
Showing 8 changed files with 5,230 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/latest.yml
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Setup cmake
uses: ./
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup cmake
uses: ./
Expand Down Expand Up @@ -51,12 +51,12 @@ jobs:

steps:
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: '12.x'
node-version: '16.x'

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install node dependencies
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Setup cmake
uses: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-32bit.yml
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup cmake
uses: ./
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1.12
uses: jwlawson/actions-setup-cmake@v1.13
with:
cmake-version: '3.16.x'
- name: Use cmake
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -11,5 +11,5 @@ inputs:
description: 'Force using 32 bit version of cmake, instead of looking for 64 bit version'
default: 'false'
runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'

0 comments on commit 4f73d30

Please sign in to comment.