From 6042b82cb19b2aae640e332aeba4265bed98723a Mon Sep 17 00:00:00 2001 From: Ray Zimmerman Date: Fri, 2 Feb 2024 14:33:30 -0700 Subject: [PATCH] Update to new versions of Github CI actions - actions/checkout@v3 --> v4 - actions/cache@v3 --> v4 - matlab-actions/setup-matlab@v1 --> v2 - MATPOWER/action-configure-matlab@v1 --> v2 --- .github/workflows/continuous-integration.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 508ff4e9..d966b012 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Include IPOPT? if: matrix.platform == 'matlab' || matrix.os != 'ubuntu-16.04' @@ -37,7 +37,7 @@ jobs: id: cache-ipopt-libs env: cache-name: ipopt-libs - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/install key: ${{ env.cache-name }}-${{ matrix.os }} @@ -51,7 +51,7 @@ jobs: id: cache-ipopt env: cache-name: ipopt - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/build/ipopt key: ${{ env.cache-name }}-${{ matrix.platform }}-${{ matrix.os }} @@ -61,7 +61,7 @@ jobs: id: cache-osqp env: cache-name: osqp - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/build/osqp-matlab key: ${{ env.cache-name }}-${{ matrix.platform }}-${{ matrix.os }} @@ -78,11 +78,11 @@ jobs: - name: Install MATLAB if: matrix.platform == 'matlab' - uses: matlab-actions/setup-matlab@v1 + uses: matlab-actions/setup-matlab@v2 - name: Configure MATLAB if: matrix.platform == 'matlab' - uses: MATPOWER/action-configure-matlab@v1 + uses: MATPOWER/action-configure-matlab@v2 with: os: ${{ matrix.os }} ipopt: ${{ env.INCLUDE_IPOPT == 1 }}