Skip to content

Commit

Permalink
fix(ci): Bumped actions/checkout from v3 to v4 and actions/cache from…
Browse files Browse the repository at this point in the history
… v3 to v4.
  • Loading branch information
maxemiliang committed May 24, 2024
1 parent bbe2682 commit 1b23833
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
sudo rm -rf ./* || true
sudo rm -rf ./.??* || true
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Checkout submodules
run: git submodule update --init --recursive
Expand All @@ -145,14 +145,14 @@ jobs:

- name: Cache Cbc
id: cache-cbc
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{github.workspace}}/ThirdParty/Cbc
key: ${{ runner.os }}-cbc

- name: Cache Ipopt
id: cache-ipopt
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{github.workspace}}/ThirdParty/Ipopt
key: ${{ runner.os }}-ipopt
Expand Down

0 comments on commit 1b23833

Please sign in to comment.