Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 20
- name: Install dependencies
Expand Down
10 changes: 5 additions & 5 deletions public/scripts/workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ function generateWorkflow({
`.trimStart()
}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
${
useVirtualDisplay
? `
Expand All @@ -189,7 +189,7 @@ function generateWorkflow({
}
# Set up MATLAB and other MathWorks products on the runner.
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2
uses: matlab-actions/setup-matlab@v3
with:
release: latest
cache: true
Expand All @@ -199,20 +199,20 @@ function generateWorkflow({

# Run tests authored using the MATLAB unit testing framework or Simulink Test.
- name: Run MATLAB tests
uses: matlab-actions/run-tests@v2
uses: matlab-actions/run-tests@v3
# If you are not using a MATLAB project, add your source code to the path using the source-folder input.
# with:
# source-folder: myfolderA; myfolderB

# Alternatively, run tasks from your buildfile.m.
# - name: Run MATLAB build
# uses: matlab-actions/run-build@v2
# uses: matlab-actions/run-build@v3
# with:
# tasks: test

# Alternatively, run MATLAB scripts, functions, and statements.
# - name: Run MATLAB command
# uses: matlab-actions/run-command@v2
# uses: matlab-actions/run-command@v3
# with:
# command: results = runtests('IncludeSubfolders',true); assertSuccess(results);
`);
Expand Down