diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2f9404d..4d9c341 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5c4eaf0..e2782e2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/public/scripts/workflow.js b/public/scripts/workflow.js index 97cd73c..68d1f47 100644 --- a/public/scripts/workflow.js +++ b/public/scripts/workflow.js @@ -174,7 +174,7 @@ function generateWorkflow({ `.trimStart() } steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 ${ useVirtualDisplay ? ` @@ -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 @@ -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); `);