Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: GitHub actions/cache@v2 is deprecated #1166

Merged
merged 1 commit into from
Jan 31, 2025
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
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
# LIBFABRIC
- name: Cache libfabric install
id: cache-libfabric
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ env.LIBFABRIC_INSTALL_DIR }}
key: libfabric-${{ matrix.libfabric_version }}-${{ env.OS_NAME }}
Expand All @@ -196,7 +196,7 @@ jobs:
- name: Cache XPMEM install
if: ${{ matrix.xpmem_version }}
id: cache-xpmem
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ env.XPMEM_INSTALL_DIR }}
key: xpmem-${{ matrix.xpmem_version }}-${{ env.OS_NAME }}
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
# - name: Cache libfabric install
# if: ${{ matrix.sos_transport == 'libfabric' }}
# id: cache-libfabric
# uses: actions/cache@v2
# uses: actions/cache@v4
# with:
# path: ${{ env.LIBFABRIC_INSTALL_DIR }}
# key: libfabric-${{ matrix.libfabric_version }}-${{ env.OS_NAME }}
Expand All @@ -336,7 +336,7 @@ jobs:
# - name: Cache UCX install
# if: ${{ matrix.sos_transport == 'ucx' }}
# id: cache-ucx
# uses: actions/cache@v2
# uses: actions/cache@v4
# with:
# path: ${{ env.UCX_INSTALL_DIR }}
# key: ucx-${{ matrix.ucx_version }}-${{ env.OS_NAME }}
Expand All @@ -361,7 +361,7 @@ jobs:
# - name: Cache Portals4 install
# if: ${{ matrix.sos_transport == 'portals4' }}
# id: cache-portals4
# uses: actions/cache@v2
# uses: actions/cache@v4
# with:
# path: ${{ env.PORTALS4_INSTALL_DIR }}
# key: portals4-${{ matrix.portals4_version }}-${{ env.OS_NAME }}
Expand All @@ -385,7 +385,7 @@ jobs:
# # Libevent
# - name: Cache libevent install
# id: cache-libevent
# uses: actions/cache@v2
# uses: actions/cache@v4
# with:
# path: ${{ env.LIBEVENT_INSTALL_DIR }}
# key: libevent-${{ matrix.libevent_version }}-${{ env.OS_NAME }}
Expand All @@ -407,7 +407,7 @@ jobs:
# # PMIx
# - name: Cache PMIx install
# id: cache-pmix
# uses: actions/cache@v2
# uses: actions/cache@v4
# with:
# path: ${{ env.PMIX_INSTALL_DIR }}
# key: pmix-${{ matrix.pmix_version }}-${{ env.OS_NAME }}
Expand All @@ -429,7 +429,7 @@ jobs:
# # Build PRRTE
# - name: Cache PRRTE install
# id: cache-prrte
# uses: actions/cache@v2
# uses: actions/cache@v4
# with:
# path: ${{ env.PRRTE_INSTALL_DIR }}
# key: prrte-${{ matrix.prrte_version}}-${{ env.OS_NAME }}
Expand Down Expand Up @@ -524,7 +524,7 @@ jobs:
# UCX
- name: Cache UCX install
id: cache-ucx
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ env.UCX_INSTALL_DIR }}
key: ucx-${{ matrix.ucx_version}}-${{ env.OS_NAME }}
Expand Down Expand Up @@ -618,7 +618,7 @@ jobs:
# Portals4
- name: Cache Portals4 install
id: cache-portals4
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ env.PORTALS4_INSTALL_DIR }}
key: portals4-${{ matrix.portals4_version}}-${{ env.OS_NAME }}
Expand Down
Loading