From 0cf9d90cb6c3d1cd5d6b1affc52a390a8c5b424b Mon Sep 17 00:00:00 2001 From: Kevin Gurney Date: Wed, 20 Sep 2023 12:16:05 -0400 Subject: [PATCH 1/2] Hard-code `setup-matlab` release to `R2023a`. --- .github/workflows/matlab.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/matlab.yml b/.github/workflows/matlab.yml index 221ed5c77cd..29dafc6adc1 100644 --- a/.github/workflows/matlab.yml +++ b/.github/workflows/matlab.yml @@ -53,6 +53,7 @@ jobs: run: sudo apt-get install ninja-build - name: Install MATLAB uses: matlab-actions/setup-matlab@v1 + release: R2023a - name: Install ccache run: sudo apt-get install ccache - name: Setup ccache @@ -99,6 +100,7 @@ jobs: run: brew install ninja - name: Install MATLAB uses: matlab-actions/setup-matlab@v1 + release: R2023a - name: Install ccache run: brew install ccache - name: Setup ccache @@ -135,6 +137,7 @@ jobs: fetch-depth: 0 - name: Install MATLAB uses: matlab-actions/setup-matlab@v1 + release: R2023a - name: Download Timezone Database shell: bash run: ci/scripts/download_tz_database.sh From eadc0498d0e67bec4eca56ab90b918cc7ad1cc73 Mon Sep 17 00:00:00 2001 From: Kevin Gurney Date: Wed, 20 Sep 2023 12:18:01 -0400 Subject: [PATCH 2/2] Add missing `with` keyword. --- .github/workflows/matlab.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/matlab.yml b/.github/workflows/matlab.yml index 29dafc6adc1..6921e12213b 100644 --- a/.github/workflows/matlab.yml +++ b/.github/workflows/matlab.yml @@ -53,6 +53,7 @@ jobs: run: sudo apt-get install ninja-build - name: Install MATLAB uses: matlab-actions/setup-matlab@v1 + with: release: R2023a - name: Install ccache run: sudo apt-get install ccache @@ -100,6 +101,7 @@ jobs: run: brew install ninja - name: Install MATLAB uses: matlab-actions/setup-matlab@v1 + with: release: R2023a - name: Install ccache run: brew install ccache @@ -137,6 +139,7 @@ jobs: fetch-depth: 0 - name: Install MATLAB uses: matlab-actions/setup-matlab@v1 + with: release: R2023a - name: Download Timezone Database shell: bash