Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ runs:
echo '------------------------------'

- name: Setup cache for pybind11 files
uses: actions/cache@v2
uses: actions/cache@v4
id: pybind11_cache
with:
path: ${{ env.PYBIND11_INSTALL_DIR }}
Expand All @@ -305,7 +305,7 @@ runs:

- name: Setup cache for Qt files
if: inputs.sofa_scope != 'minimal'
uses: actions/cache@v2
uses: actions/cache@v4
id: qt_cache
with:
path: ${{ env.QT_INSTALL_DIR }}
Expand Down Expand Up @@ -340,7 +340,7 @@ runs:
echo "$Qt5_ROOT" >> $GITHUB_PATH

- name: Setup cache for Boost files
uses: actions/cache@v2
uses: actions/cache@v4
id: boost_cache
with:
path: ${{ env.BOOST_INSTALL_DIR }}
Expand Down Expand Up @@ -381,7 +381,7 @@ runs:
fi

- name: Setup cache for Eigen files
uses: actions/cache@v2
uses: actions/cache@v4
id: eigen_cache
with:
path: ${{ env.EIGEN_INSTALL_DIR }}
Expand Down
Loading