diff --git a/.github/workflows/getdeps_linux.yml b/.github/workflows/getdeps_linux.yml index 18ac1ce3fd..6dfad5adb4 100644 --- a/.github/workflows/getdeps_linux.yml +++ b/.github/workflows/getdeps_linux.yml @@ -121,7 +121,7 @@ jobs: - name: Restore ninja from cache id: restore_ninja if: ${{ steps.paths.outputs.ninja_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.ninja_INSTALL }} key: ${{ steps.paths.outputs.ninja_CACHE_KEY }}-install @@ -129,7 +129,7 @@ jobs: if: ${{ steps.paths.outputs.ninja_SOURCE && ! steps.restore_ninja.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests ninja - name: Save ninja to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.ninja_SOURCE && ! steps.restore_ninja.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.ninja_INSTALL }} @@ -137,7 +137,7 @@ jobs: - name: Restore cmake from cache id: restore_cmake if: ${{ steps.paths.outputs.cmake_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.cmake_INSTALL }} key: ${{ steps.paths.outputs.cmake_CACHE_KEY }}-install @@ -145,7 +145,7 @@ jobs: if: ${{ steps.paths.outputs.cmake_SOURCE && ! steps.restore_cmake.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests cmake - name: Save cmake to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.cmake_SOURCE && ! steps.restore_cmake.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.cmake_INSTALL }} @@ -153,7 +153,7 @@ jobs: - name: Restore c-ares from cache id: restore_c-ares if: ${{ steps.paths.outputs.c-ares_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.c-ares_INSTALL }} key: ${{ steps.paths.outputs.c-ares_CACHE_KEY }}-install @@ -161,7 +161,7 @@ jobs: if: ${{ steps.paths.outputs.c-ares_SOURCE && ! steps.restore_c-ares.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests c-ares - name: Save c-ares to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.c-ares_SOURCE && ! steps.restore_c-ares.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.c-ares_INSTALL }} @@ -169,7 +169,7 @@ jobs: - name: Restore zlib from cache id: restore_zlib if: ${{ steps.paths.outputs.zlib_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.zlib_INSTALL }} key: ${{ steps.paths.outputs.zlib_CACHE_KEY }}-install @@ -177,7 +177,7 @@ jobs: if: ${{ steps.paths.outputs.zlib_SOURCE && ! steps.restore_zlib.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests zlib - name: Save zlib to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.zlib_SOURCE && ! steps.restore_zlib.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.zlib_INSTALL }} @@ -185,7 +185,7 @@ jobs: - name: Restore zstd from cache id: restore_zstd if: ${{ steps.paths.outputs.zstd_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.zstd_INSTALL }} key: ${{ steps.paths.outputs.zstd_CACHE_KEY }}-install @@ -193,7 +193,7 @@ jobs: if: ${{ steps.paths.outputs.zstd_SOURCE && ! steps.restore_zstd.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests zstd - name: Save zstd to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.zstd_SOURCE && ! steps.restore_zstd.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.zstd_INSTALL }} @@ -201,7 +201,7 @@ jobs: - name: Restore boost from cache id: restore_boost if: ${{ steps.paths.outputs.boost_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.boost_INSTALL }} key: ${{ steps.paths.outputs.boost_CACHE_KEY }}-install @@ -209,7 +209,7 @@ jobs: if: ${{ steps.paths.outputs.boost_SOURCE && ! steps.restore_boost.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests boost - name: Save boost to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.boost_SOURCE && ! steps.restore_boost.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.boost_INSTALL }} @@ -217,7 +217,7 @@ jobs: - name: Restore double-conversion from cache id: restore_double-conversion if: ${{ steps.paths.outputs.double-conversion_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.double-conversion_INSTALL }} key: ${{ steps.paths.outputs.double-conversion_CACHE_KEY }}-install @@ -225,7 +225,7 @@ jobs: if: ${{ steps.paths.outputs.double-conversion_SOURCE && ! steps.restore_double-conversion.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests double-conversion - name: Save double-conversion to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.double-conversion_SOURCE && ! steps.restore_double-conversion.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.double-conversion_INSTALL }} @@ -233,7 +233,7 @@ jobs: - name: Restore fast_float from cache id: restore_fast_float if: ${{ steps.paths.outputs.fast_float_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.fast_float_INSTALL }} key: ${{ steps.paths.outputs.fast_float_CACHE_KEY }}-install @@ -241,7 +241,7 @@ jobs: if: ${{ steps.paths.outputs.fast_float_SOURCE && ! steps.restore_fast_float.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests fast_float - name: Save fast_float to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.fast_float_SOURCE && ! steps.restore_fast_float.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.fast_float_INSTALL }} @@ -249,7 +249,7 @@ jobs: - name: Restore fmt from cache id: restore_fmt if: ${{ steps.paths.outputs.fmt_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.fmt_INSTALL }} key: ${{ steps.paths.outputs.fmt_CACHE_KEY }}-install @@ -257,7 +257,7 @@ jobs: if: ${{ steps.paths.outputs.fmt_SOURCE && ! steps.restore_fmt.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests fmt - name: Save fmt to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.fmt_SOURCE && ! steps.restore_fmt.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.fmt_INSTALL }} @@ -265,7 +265,7 @@ jobs: - name: Restore gflags from cache id: restore_gflags if: ${{ steps.paths.outputs.gflags_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.gflags_INSTALL }} key: ${{ steps.paths.outputs.gflags_CACHE_KEY }}-install @@ -273,7 +273,7 @@ jobs: if: ${{ steps.paths.outputs.gflags_SOURCE && ! steps.restore_gflags.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests gflags - name: Save gflags to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.gflags_SOURCE && ! steps.restore_gflags.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.gflags_INSTALL }} @@ -281,7 +281,7 @@ jobs: - name: Restore glog from cache id: restore_glog if: ${{ steps.paths.outputs.glog_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.glog_INSTALL }} key: ${{ steps.paths.outputs.glog_CACHE_KEY }}-install @@ -289,7 +289,7 @@ jobs: if: ${{ steps.paths.outputs.glog_SOURCE && ! steps.restore_glog.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests glog - name: Save glog to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.glog_SOURCE && ! steps.restore_glog.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.glog_INSTALL }} @@ -297,7 +297,7 @@ jobs: - name: Restore googletest from cache id: restore_googletest if: ${{ steps.paths.outputs.googletest_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.googletest_INSTALL }} key: ${{ steps.paths.outputs.googletest_CACHE_KEY }}-install @@ -305,7 +305,7 @@ jobs: if: ${{ steps.paths.outputs.googletest_SOURCE && ! steps.restore_googletest.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests googletest - name: Save googletest to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.googletest_SOURCE && ! steps.restore_googletest.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.googletest_INSTALL }} @@ -313,7 +313,7 @@ jobs: - name: Restore libaio from cache id: restore_libaio if: ${{ steps.paths.outputs.libaio_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.libaio_INSTALL }} key: ${{ steps.paths.outputs.libaio_CACHE_KEY }}-install @@ -321,7 +321,7 @@ jobs: if: ${{ steps.paths.outputs.libaio_SOURCE && ! steps.restore_libaio.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests libaio - name: Save libaio to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.libaio_SOURCE && ! steps.restore_libaio.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.libaio_INSTALL }} @@ -329,7 +329,7 @@ jobs: - name: Restore libdwarf from cache id: restore_libdwarf if: ${{ steps.paths.outputs.libdwarf_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.libdwarf_INSTALL }} key: ${{ steps.paths.outputs.libdwarf_CACHE_KEY }}-install @@ -337,7 +337,7 @@ jobs: if: ${{ steps.paths.outputs.libdwarf_SOURCE && ! steps.restore_libdwarf.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests libdwarf - name: Save libdwarf to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.libdwarf_SOURCE && ! steps.restore_libdwarf.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.libdwarf_INSTALL }} @@ -345,7 +345,7 @@ jobs: - name: Restore libevent from cache id: restore_libevent if: ${{ steps.paths.outputs.libevent_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.libevent_INSTALL }} key: ${{ steps.paths.outputs.libevent_CACHE_KEY }}-install @@ -353,7 +353,7 @@ jobs: if: ${{ steps.paths.outputs.libevent_SOURCE && ! steps.restore_libevent.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests libevent - name: Save libevent to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.libevent_SOURCE && ! steps.restore_libevent.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.libevent_INSTALL }} @@ -361,7 +361,7 @@ jobs: - name: Restore lz4 from cache id: restore_lz4 if: ${{ steps.paths.outputs.lz4_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.lz4_INSTALL }} key: ${{ steps.paths.outputs.lz4_CACHE_KEY }}-install @@ -369,7 +369,7 @@ jobs: if: ${{ steps.paths.outputs.lz4_SOURCE && ! steps.restore_lz4.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests lz4 - name: Save lz4 to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.lz4_SOURCE && ! steps.restore_lz4.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.lz4_INSTALL }} @@ -377,7 +377,7 @@ jobs: - name: Restore snappy from cache id: restore_snappy if: ${{ steps.paths.outputs.snappy_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.snappy_INSTALL }} key: ${{ steps.paths.outputs.snappy_CACHE_KEY }}-install @@ -385,7 +385,7 @@ jobs: if: ${{ steps.paths.outputs.snappy_SOURCE && ! steps.restore_snappy.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests snappy - name: Save snappy to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.snappy_SOURCE && ! steps.restore_snappy.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.snappy_INSTALL }} @@ -393,7 +393,7 @@ jobs: - name: Restore openssl from cache id: restore_openssl if: ${{ steps.paths.outputs.openssl_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.openssl_INSTALL }} key: ${{ steps.paths.outputs.openssl_CACHE_KEY }}-install @@ -401,7 +401,7 @@ jobs: if: ${{ steps.paths.outputs.openssl_SOURCE && ! steps.restore_openssl.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests openssl - name: Save openssl to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.openssl_SOURCE && ! steps.restore_openssl.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.openssl_INSTALL }} @@ -409,7 +409,7 @@ jobs: - name: Restore liboqs from cache id: restore_liboqs if: ${{ steps.paths.outputs.liboqs_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.liboqs_INSTALL }} key: ${{ steps.paths.outputs.liboqs_CACHE_KEY }}-install @@ -417,7 +417,7 @@ jobs: if: ${{ steps.paths.outputs.liboqs_SOURCE && ! steps.restore_liboqs.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests liboqs - name: Save liboqs to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.liboqs_SOURCE && ! steps.restore_liboqs.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.liboqs_INSTALL }} @@ -425,7 +425,7 @@ jobs: - name: Restore autoconf from cache id: restore_autoconf if: ${{ steps.paths.outputs.autoconf_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.autoconf_INSTALL }} key: ${{ steps.paths.outputs.autoconf_CACHE_KEY }}-install @@ -433,7 +433,7 @@ jobs: if: ${{ steps.paths.outputs.autoconf_SOURCE && ! steps.restore_autoconf.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests autoconf - name: Save autoconf to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.autoconf_SOURCE && ! steps.restore_autoconf.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.autoconf_INSTALL }} @@ -441,7 +441,7 @@ jobs: - name: Restore automake from cache id: restore_automake if: ${{ steps.paths.outputs.automake_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.automake_INSTALL }} key: ${{ steps.paths.outputs.automake_CACHE_KEY }}-install @@ -449,7 +449,7 @@ jobs: if: ${{ steps.paths.outputs.automake_SOURCE && ! steps.restore_automake.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests automake - name: Save automake to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.automake_SOURCE && ! steps.restore_automake.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.automake_INSTALL }} @@ -457,7 +457,7 @@ jobs: - name: Restore libtool from cache id: restore_libtool if: ${{ steps.paths.outputs.libtool_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.libtool_INSTALL }} key: ${{ steps.paths.outputs.libtool_CACHE_KEY }}-install @@ -465,7 +465,7 @@ jobs: if: ${{ steps.paths.outputs.libtool_SOURCE && ! steps.restore_libtool.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests libtool - name: Save libtool to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.libtool_SOURCE && ! steps.restore_libtool.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.libtool_INSTALL }} @@ -473,7 +473,7 @@ jobs: - name: Restore gperf from cache id: restore_gperf if: ${{ steps.paths.outputs.gperf_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.gperf_INSTALL }} key: ${{ steps.paths.outputs.gperf_CACHE_KEY }}-install @@ -481,7 +481,7 @@ jobs: if: ${{ steps.paths.outputs.gperf_SOURCE && ! steps.restore_gperf.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests gperf - name: Save gperf to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.gperf_SOURCE && ! steps.restore_gperf.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.gperf_INSTALL }} @@ -489,7 +489,7 @@ jobs: - name: Restore libiberty from cache id: restore_libiberty if: ${{ steps.paths.outputs.libiberty_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.libiberty_INSTALL }} key: ${{ steps.paths.outputs.libiberty_CACHE_KEY }}-install @@ -497,7 +497,7 @@ jobs: if: ${{ steps.paths.outputs.libiberty_SOURCE && ! steps.restore_libiberty.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests libiberty - name: Save libiberty to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.libiberty_SOURCE && ! steps.restore_libiberty.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.libiberty_INSTALL }} @@ -505,7 +505,7 @@ jobs: - name: Restore libsodium from cache id: restore_libsodium if: ${{ steps.paths.outputs.libsodium_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.libsodium_INSTALL }} key: ${{ steps.paths.outputs.libsodium_CACHE_KEY }}-install @@ -513,7 +513,7 @@ jobs: if: ${{ steps.paths.outputs.libsodium_SOURCE && ! steps.restore_libsodium.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests libsodium - name: Save libsodium to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.libsodium_SOURCE && ! steps.restore_libsodium.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.libsodium_INSTALL }} @@ -521,7 +521,7 @@ jobs: - name: Restore libunwind from cache id: restore_libunwind if: ${{ steps.paths.outputs.libunwind_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.libunwind_INSTALL }} key: ${{ steps.paths.outputs.libunwind_CACHE_KEY }}-install @@ -529,7 +529,7 @@ jobs: if: ${{ steps.paths.outputs.libunwind_SOURCE && ! steps.restore_libunwind.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests libunwind - name: Save libunwind to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.libunwind_SOURCE && ! steps.restore_libunwind.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.libunwind_INSTALL }} @@ -537,7 +537,7 @@ jobs: - name: Restore xz from cache id: restore_xz if: ${{ steps.paths.outputs.xz_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.xz_INSTALL }} key: ${{ steps.paths.outputs.xz_CACHE_KEY }}-install @@ -545,7 +545,7 @@ jobs: if: ${{ steps.paths.outputs.xz_SOURCE && ! steps.restore_xz.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests xz - name: Save xz to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.xz_SOURCE && ! steps.restore_xz.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.xz_INSTALL }} @@ -553,7 +553,7 @@ jobs: - name: Restore folly from cache id: restore_folly if: ${{ steps.paths.outputs.folly_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.folly_INSTALL }} key: ${{ steps.paths.outputs.folly_CACHE_KEY }}-install @@ -561,7 +561,7 @@ jobs: if: ${{ steps.paths.outputs.folly_SOURCE && ! steps.restore_folly.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests folly - name: Save folly to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.folly_SOURCE && ! steps.restore_folly.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.folly_INSTALL }} @@ -569,7 +569,7 @@ jobs: - name: Restore fizz from cache id: restore_fizz if: ${{ steps.paths.outputs.fizz_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.fizz_INSTALL }} key: ${{ steps.paths.outputs.fizz_CACHE_KEY }}-install @@ -577,7 +577,7 @@ jobs: if: ${{ steps.paths.outputs.fizz_SOURCE && ! steps.restore_fizz.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests fizz - name: Save fizz to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.fizz_SOURCE && ! steps.restore_fizz.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.fizz_INSTALL }} @@ -585,7 +585,7 @@ jobs: - name: Restore mvfst from cache id: restore_mvfst if: ${{ steps.paths.outputs.mvfst_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.mvfst_INSTALL }} key: ${{ steps.paths.outputs.mvfst_CACHE_KEY }}-install @@ -593,7 +593,7 @@ jobs: if: ${{ steps.paths.outputs.mvfst_SOURCE && ! steps.restore_mvfst.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests mvfst - name: Save mvfst to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.mvfst_SOURCE && ! steps.restore_mvfst.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.mvfst_INSTALL }} @@ -601,7 +601,7 @@ jobs: - name: Restore wangle from cache id: restore_wangle if: ${{ steps.paths.outputs.wangle_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.wangle_INSTALL }} key: ${{ steps.paths.outputs.wangle_CACHE_KEY }}-install @@ -609,7 +609,7 @@ jobs: if: ${{ steps.paths.outputs.wangle_SOURCE && ! steps.restore_wangle.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests wangle - name: Save wangle to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.wangle_SOURCE && ! steps.restore_wangle.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.wangle_INSTALL }} diff --git a/.github/workflows/getdeps_mac.yml b/.github/workflows/getdeps_mac.yml index 78b5582323..330c65c1b1 100644 --- a/.github/workflows/getdeps_mac.yml +++ b/.github/workflows/getdeps_mac.yml @@ -110,7 +110,7 @@ jobs: - name: Restore ninja from cache id: restore_ninja if: ${{ steps.paths.outputs.ninja_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.ninja_INSTALL }} key: ${{ steps.paths.outputs.ninja_CACHE_KEY }}-install @@ -118,7 +118,7 @@ jobs: if: ${{ steps.paths.outputs.ninja_SOURCE && ! steps.restore_ninja.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests ninja - name: Save ninja to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.ninja_SOURCE && ! steps.restore_ninja.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.ninja_INSTALL }} @@ -126,7 +126,7 @@ jobs: - name: Restore cmake from cache id: restore_cmake if: ${{ steps.paths.outputs.cmake_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.cmake_INSTALL }} key: ${{ steps.paths.outputs.cmake_CACHE_KEY }}-install @@ -134,7 +134,7 @@ jobs: if: ${{ steps.paths.outputs.cmake_SOURCE && ! steps.restore_cmake.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests cmake - name: Save cmake to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.cmake_SOURCE && ! steps.restore_cmake.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.cmake_INSTALL }} @@ -142,7 +142,7 @@ jobs: - name: Restore c-ares from cache id: restore_c-ares if: ${{ steps.paths.outputs.c-ares_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.c-ares_INSTALL }} key: ${{ steps.paths.outputs.c-ares_CACHE_KEY }}-install @@ -150,7 +150,7 @@ jobs: if: ${{ steps.paths.outputs.c-ares_SOURCE && ! steps.restore_c-ares.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests c-ares - name: Save c-ares to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.c-ares_SOURCE && ! steps.restore_c-ares.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.c-ares_INSTALL }} @@ -158,7 +158,7 @@ jobs: - name: Restore zlib from cache id: restore_zlib if: ${{ steps.paths.outputs.zlib_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.zlib_INSTALL }} key: ${{ steps.paths.outputs.zlib_CACHE_KEY }}-install @@ -166,7 +166,7 @@ jobs: if: ${{ steps.paths.outputs.zlib_SOURCE && ! steps.restore_zlib.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests zlib - name: Save zlib to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.zlib_SOURCE && ! steps.restore_zlib.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.zlib_INSTALL }} @@ -174,7 +174,7 @@ jobs: - name: Restore zstd from cache id: restore_zstd if: ${{ steps.paths.outputs.zstd_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.zstd_INSTALL }} key: ${{ steps.paths.outputs.zstd_CACHE_KEY }}-install @@ -182,7 +182,7 @@ jobs: if: ${{ steps.paths.outputs.zstd_SOURCE && ! steps.restore_zstd.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests zstd - name: Save zstd to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.zstd_SOURCE && ! steps.restore_zstd.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.zstd_INSTALL }} @@ -190,7 +190,7 @@ jobs: - name: Restore boost from cache id: restore_boost if: ${{ steps.paths.outputs.boost_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.boost_INSTALL }} key: ${{ steps.paths.outputs.boost_CACHE_KEY }}-install @@ -198,7 +198,7 @@ jobs: if: ${{ steps.paths.outputs.boost_SOURCE && ! steps.restore_boost.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests boost - name: Save boost to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.boost_SOURCE && ! steps.restore_boost.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.boost_INSTALL }} @@ -206,7 +206,7 @@ jobs: - name: Restore double-conversion from cache id: restore_double-conversion if: ${{ steps.paths.outputs.double-conversion_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.double-conversion_INSTALL }} key: ${{ steps.paths.outputs.double-conversion_CACHE_KEY }}-install @@ -214,7 +214,7 @@ jobs: if: ${{ steps.paths.outputs.double-conversion_SOURCE && ! steps.restore_double-conversion.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests double-conversion - name: Save double-conversion to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.double-conversion_SOURCE && ! steps.restore_double-conversion.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.double-conversion_INSTALL }} @@ -222,7 +222,7 @@ jobs: - name: Restore fast_float from cache id: restore_fast_float if: ${{ steps.paths.outputs.fast_float_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.fast_float_INSTALL }} key: ${{ steps.paths.outputs.fast_float_CACHE_KEY }}-install @@ -230,7 +230,7 @@ jobs: if: ${{ steps.paths.outputs.fast_float_SOURCE && ! steps.restore_fast_float.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests fast_float - name: Save fast_float to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.fast_float_SOURCE && ! steps.restore_fast_float.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.fast_float_INSTALL }} @@ -238,7 +238,7 @@ jobs: - name: Restore fmt from cache id: restore_fmt if: ${{ steps.paths.outputs.fmt_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.fmt_INSTALL }} key: ${{ steps.paths.outputs.fmt_CACHE_KEY }}-install @@ -246,7 +246,7 @@ jobs: if: ${{ steps.paths.outputs.fmt_SOURCE && ! steps.restore_fmt.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests fmt - name: Save fmt to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.fmt_SOURCE && ! steps.restore_fmt.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.fmt_INSTALL }} @@ -254,7 +254,7 @@ jobs: - name: Restore gflags from cache id: restore_gflags if: ${{ steps.paths.outputs.gflags_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.gflags_INSTALL }} key: ${{ steps.paths.outputs.gflags_CACHE_KEY }}-install @@ -262,7 +262,7 @@ jobs: if: ${{ steps.paths.outputs.gflags_SOURCE && ! steps.restore_gflags.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests gflags - name: Save gflags to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.gflags_SOURCE && ! steps.restore_gflags.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.gflags_INSTALL }} @@ -270,7 +270,7 @@ jobs: - name: Restore glog from cache id: restore_glog if: ${{ steps.paths.outputs.glog_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.glog_INSTALL }} key: ${{ steps.paths.outputs.glog_CACHE_KEY }}-install @@ -278,7 +278,7 @@ jobs: if: ${{ steps.paths.outputs.glog_SOURCE && ! steps.restore_glog.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests glog - name: Save glog to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.glog_SOURCE && ! steps.restore_glog.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.glog_INSTALL }} @@ -286,7 +286,7 @@ jobs: - name: Restore googletest from cache id: restore_googletest if: ${{ steps.paths.outputs.googletest_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.googletest_INSTALL }} key: ${{ steps.paths.outputs.googletest_CACHE_KEY }}-install @@ -294,7 +294,7 @@ jobs: if: ${{ steps.paths.outputs.googletest_SOURCE && ! steps.restore_googletest.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests googletest - name: Save googletest to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.googletest_SOURCE && ! steps.restore_googletest.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.googletest_INSTALL }} @@ -302,7 +302,7 @@ jobs: - name: Restore libdwarf from cache id: restore_libdwarf if: ${{ steps.paths.outputs.libdwarf_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.libdwarf_INSTALL }} key: ${{ steps.paths.outputs.libdwarf_CACHE_KEY }}-install @@ -310,7 +310,7 @@ jobs: if: ${{ steps.paths.outputs.libdwarf_SOURCE && ! steps.restore_libdwarf.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests libdwarf - name: Save libdwarf to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.libdwarf_SOURCE && ! steps.restore_libdwarf.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.libdwarf_INSTALL }} @@ -318,7 +318,7 @@ jobs: - name: Restore lz4 from cache id: restore_lz4 if: ${{ steps.paths.outputs.lz4_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.lz4_INSTALL }} key: ${{ steps.paths.outputs.lz4_CACHE_KEY }}-install @@ -326,7 +326,7 @@ jobs: if: ${{ steps.paths.outputs.lz4_SOURCE && ! steps.restore_lz4.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests lz4 - name: Save lz4 to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.lz4_SOURCE && ! steps.restore_lz4.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.lz4_INSTALL }} @@ -334,7 +334,7 @@ jobs: - name: Restore openssl from cache id: restore_openssl if: ${{ steps.paths.outputs.openssl_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.openssl_INSTALL }} key: ${{ steps.paths.outputs.openssl_CACHE_KEY }}-install @@ -342,7 +342,7 @@ jobs: if: ${{ steps.paths.outputs.openssl_SOURCE && ! steps.restore_openssl.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests openssl - name: Save openssl to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.openssl_SOURCE && ! steps.restore_openssl.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.openssl_INSTALL }} @@ -350,7 +350,7 @@ jobs: - name: Restore snappy from cache id: restore_snappy if: ${{ steps.paths.outputs.snappy_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.snappy_INSTALL }} key: ${{ steps.paths.outputs.snappy_CACHE_KEY }}-install @@ -358,7 +358,7 @@ jobs: if: ${{ steps.paths.outputs.snappy_SOURCE && ! steps.restore_snappy.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests snappy - name: Save snappy to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.snappy_SOURCE && ! steps.restore_snappy.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.snappy_INSTALL }} @@ -366,7 +366,7 @@ jobs: - name: Restore libevent from cache id: restore_libevent if: ${{ steps.paths.outputs.libevent_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.libevent_INSTALL }} key: ${{ steps.paths.outputs.libevent_CACHE_KEY }}-install @@ -374,7 +374,7 @@ jobs: if: ${{ steps.paths.outputs.libevent_SOURCE && ! steps.restore_libevent.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests libevent - name: Save libevent to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.libevent_SOURCE && ! steps.restore_libevent.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.libevent_INSTALL }} @@ -382,7 +382,7 @@ jobs: - name: Restore liboqs from cache id: restore_liboqs if: ${{ steps.paths.outputs.liboqs_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.liboqs_INSTALL }} key: ${{ steps.paths.outputs.liboqs_CACHE_KEY }}-install @@ -390,7 +390,7 @@ jobs: if: ${{ steps.paths.outputs.liboqs_SOURCE && ! steps.restore_liboqs.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests liboqs - name: Save liboqs to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.liboqs_SOURCE && ! steps.restore_liboqs.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.liboqs_INSTALL }} @@ -398,7 +398,7 @@ jobs: - name: Restore autoconf from cache id: restore_autoconf if: ${{ steps.paths.outputs.autoconf_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.autoconf_INSTALL }} key: ${{ steps.paths.outputs.autoconf_CACHE_KEY }}-install @@ -406,7 +406,7 @@ jobs: if: ${{ steps.paths.outputs.autoconf_SOURCE && ! steps.restore_autoconf.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests autoconf - name: Save autoconf to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.autoconf_SOURCE && ! steps.restore_autoconf.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.autoconf_INSTALL }} @@ -414,7 +414,7 @@ jobs: - name: Restore automake from cache id: restore_automake if: ${{ steps.paths.outputs.automake_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.automake_INSTALL }} key: ${{ steps.paths.outputs.automake_CACHE_KEY }}-install @@ -422,7 +422,7 @@ jobs: if: ${{ steps.paths.outputs.automake_SOURCE && ! steps.restore_automake.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests automake - name: Save automake to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.automake_SOURCE && ! steps.restore_automake.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.automake_INSTALL }} @@ -430,7 +430,7 @@ jobs: - name: Restore libtool from cache id: restore_libtool if: ${{ steps.paths.outputs.libtool_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.libtool_INSTALL }} key: ${{ steps.paths.outputs.libtool_CACHE_KEY }}-install @@ -438,7 +438,7 @@ jobs: if: ${{ steps.paths.outputs.libtool_SOURCE && ! steps.restore_libtool.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests libtool - name: Save libtool to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.libtool_SOURCE && ! steps.restore_libtool.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.libtool_INSTALL }} @@ -446,7 +446,7 @@ jobs: - name: Restore gperf from cache id: restore_gperf if: ${{ steps.paths.outputs.gperf_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.gperf_INSTALL }} key: ${{ steps.paths.outputs.gperf_CACHE_KEY }}-install @@ -454,7 +454,7 @@ jobs: if: ${{ steps.paths.outputs.gperf_SOURCE && ! steps.restore_gperf.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests gperf - name: Save gperf to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.gperf_SOURCE && ! steps.restore_gperf.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.gperf_INSTALL }} @@ -462,7 +462,7 @@ jobs: - name: Restore libsodium from cache id: restore_libsodium if: ${{ steps.paths.outputs.libsodium_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.libsodium_INSTALL }} key: ${{ steps.paths.outputs.libsodium_CACHE_KEY }}-install @@ -470,7 +470,7 @@ jobs: if: ${{ steps.paths.outputs.libsodium_SOURCE && ! steps.restore_libsodium.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests libsodium - name: Save libsodium to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.libsodium_SOURCE && ! steps.restore_libsodium.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.libsodium_INSTALL }} @@ -478,7 +478,7 @@ jobs: - name: Restore xz from cache id: restore_xz if: ${{ steps.paths.outputs.xz_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.xz_INSTALL }} key: ${{ steps.paths.outputs.xz_CACHE_KEY }}-install @@ -486,7 +486,7 @@ jobs: if: ${{ steps.paths.outputs.xz_SOURCE && ! steps.restore_xz.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests xz - name: Save xz to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.xz_SOURCE && ! steps.restore_xz.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.xz_INSTALL }} @@ -494,7 +494,7 @@ jobs: - name: Restore folly from cache id: restore_folly if: ${{ steps.paths.outputs.folly_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.folly_INSTALL }} key: ${{ steps.paths.outputs.folly_CACHE_KEY }}-install @@ -502,7 +502,7 @@ jobs: if: ${{ steps.paths.outputs.folly_SOURCE && ! steps.restore_folly.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests folly - name: Save folly to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.folly_SOURCE && ! steps.restore_folly.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.folly_INSTALL }} @@ -510,7 +510,7 @@ jobs: - name: Restore fizz from cache id: restore_fizz if: ${{ steps.paths.outputs.fizz_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.fizz_INSTALL }} key: ${{ steps.paths.outputs.fizz_CACHE_KEY }}-install @@ -518,7 +518,7 @@ jobs: if: ${{ steps.paths.outputs.fizz_SOURCE && ! steps.restore_fizz.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests fizz - name: Save fizz to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.fizz_SOURCE && ! steps.restore_fizz.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.fizz_INSTALL }} @@ -526,7 +526,7 @@ jobs: - name: Restore mvfst from cache id: restore_mvfst if: ${{ steps.paths.outputs.mvfst_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.mvfst_INSTALL }} key: ${{ steps.paths.outputs.mvfst_CACHE_KEY }}-install @@ -534,7 +534,7 @@ jobs: if: ${{ steps.paths.outputs.mvfst_SOURCE && ! steps.restore_mvfst.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests mvfst - name: Save mvfst to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.mvfst_SOURCE && ! steps.restore_mvfst.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.mvfst_INSTALL }} @@ -542,7 +542,7 @@ jobs: - name: Restore wangle from cache id: restore_wangle if: ${{ steps.paths.outputs.wangle_SOURCE }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.paths.outputs.wangle_INSTALL }} key: ${{ steps.paths.outputs.wangle_CACHE_KEY }}-install @@ -550,7 +550,7 @@ jobs: if: ${{ steps.paths.outputs.wangle_SOURCE && ! steps.restore_wangle.outputs.cache-hit }} run: python3 build/fbcode_builder/getdeps.py --allow-system-packages build --no-tests wangle - name: Save wangle to cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.paths.outputs.wangle_SOURCE && ! steps.restore_wangle.outputs.cache-hit }} with: path: ${{ steps.paths.outputs.wangle_INSTALL }}