diff --git a/.github/workflows/bat.yml b/.github/workflows/bat.yml index e6bb9c2..4ba8e70 100644 --- a/.github/workflows/bat.yml +++ b/.github/workflows/bat.yml @@ -6,15 +6,15 @@ jobs: name: Build and Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: "16" + node-version: "20" - name: Perform npm tasks run: npm run ci - name: Perform 'setup-matlab' - uses: matlab-actions/setup-matlab@v1 + uses: matlab-actions/setup-matlab@v2 - name: Create buildfile.m in project root for tests run: | diff --git a/action.yml b/action.yml index 61bc554..6c09836 100644 --- a/action.yml +++ b/action.yml @@ -1,4 +1,4 @@ -# Copyright 2022-2023 The MathWorks, Inc. +# Copyright 2022-2024 The MathWorks, Inc. name: Run MATLAB Build description: >- @@ -15,5 +15,5 @@ inputs: required: false default: "" runs: - using: node16 + using: node20 main: dist/index.js