Skip to content

Commit

Permalink
Update to new versions of Github CI actions
Browse files Browse the repository at this point in the history
- actions/checkout@v3 --> v4
- actions/cache@v3 --> v4
- matlab-actions/setup-matlab@v1 --> v2
- MATPOWER/action-configure-matlab@v1 --> v2
  • Loading branch information
rdzman committed Feb 2, 2024
1 parent 810815d commit 67fabaa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install OpenBLAS (Linux)
if: startsWith(matrix.os, 'ubuntu') && matrix.platform == 'octave'
Expand All @@ -38,7 +38,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 }}
Expand All @@ -52,7 +52,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 }}
Expand All @@ -69,11 +69,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 }}
nojvm: false
Expand Down

0 comments on commit 67fabaa

Please sign in to comment.