Skip to content

Commit 9de811c

Browse files
authored
Update YML files to use Node 24 and latest actions
1 parent ac7cf0c commit 9de811c

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

.github/workflows/publish-jupyter-matlab-proxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
ref: ${{ github.sha }}
3232

3333
- name: Set up Python 3.10
34-
uses: actions/setup-python@v4
34+
uses: actions/setup-python@v5
3535
with:
3636
python-version: 3.10
3737

.github/workflows/publish-tljh-matlab.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2024 The MathWorks, Inc.
1+
# Copyright 2024-2025 The MathWorks, Inc.
22
name: Upload Python Package for tljh-matlab
33

44
on:
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v4
2323

2424
- name: Set up Python
25-
uses: actions/setup-python@v3
25+
uses: actions/setup-python@v5
2626
with:
2727
python-version: '3.x'
2828

.github/workflows/run-e2e-tests.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,18 @@ jobs:
1212
run:
1313
working-directory: tests/e2e
1414
env:
15-
NODE_VERSION: 18
16-
PYTHON_VERSION: 3.10
15+
NODE_VERSION: ["24"]
16+
PYTHON_VERSION: ["3.10"]
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4
2020

21-
- uses: actions/setup-node@v4
21+
- name: Set up Node ${{ env.NODE_VERSION }}
22+
uses: actions/setup-node@v6
2223
with:
2324
node-version: ${{ env.NODE_VERSION }}
2425

25-
- name: Set up Python
26+
- name: Set up Python ${{ env.PYTHON_VERSION }}
2627
uses: actions/setup-python@v5
2728
with:
2829
python-version: ${{ env.PYTHON_VERSION }}

.github/workflows/run-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
products: MATLAB Symbolic_Math_Toolbox
3333

3434
- name: Set up Python ${{ matrix.python-version }}
35-
uses: actions/setup-python@v4
35+
uses: actions/setup-python@v5
3636
with:
3737
python-version: ${{ matrix.python-version }}
3838

.github/workflows/run-unit-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
uses: actions/checkout@v3
7878

7979
- name: Set up Python ${{ matrix.python-version }}
80-
uses: actions/setup-python@v4
80+
uses: actions/setup-python@v5
8181
with:
8282
python-version: ${{ matrix.python-version }}
8383

@@ -121,12 +121,12 @@ jobs:
121121
run:
122122
working-directory: src/jupyter_matlab_labextension/src/lezer-matlab/test/
123123
env:
124-
NODE_VERSION: 18
124+
NODE_VERSION: 24
125125
steps:
126126
- name: Checkout
127127
uses: actions/checkout@v4
128128

129-
- uses: actions/setup-node@v4
129+
- uses: actions/setup-node@v6
130130
with:
131131
node-version: ${{ env.NODE_VERSION }}
132132

.github/workflows/test-tljh-matlab.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Set up Python 3.10
22-
uses: actions/setup-python@v3
22+
uses: actions/setup-python@v5
2323
with:
2424
python-version: "3.10"
2525

0 commit comments

Comments
 (0)