Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] committed Feb 5, 2024
1 parent 5e8556a commit 5b1ed76
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_for_openwrt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
git config --global --add safe.directory $(pwd)
- name: Restore OpenWrt
id: restore-openwrt
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ./openwrt-x86-64-generic-rootfs.tar.gz
key: openwrt
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
cp -rf $(find ../openwrt/bin/ -type f -name "openwrt-x86-64-generic-rootfs.tar.gz") ./
- name: Save OpenWrt
if: steps.restore-openwrt.outputs.cache-hit != 'true'
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: ./openwrt-x86-64-generic-rootfs.tar.gz
key: ${{ steps.restore-openwrt.outputs.cache-primary-key }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable-build-extensions-on-manylinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ jobs:
fi
cmake -Bbuild -GNinja -DWASMEDGE_BUILD_TESTS=${build_tests} -DCMAKE_BUILD_TYPE=${build_type} -DWASMEDGE_BUILD_AOT_RUNTIME=OFF -DWASMEDGE_BUILD_TOOLS=OFF -DOPENSSL_ROOT_DIR=$(pwd)/openssl-1.1.1n/openssl
- uses: actions/cache/save@v3
- uses: actions/cache/save@v4
with:
key: ${{ steps.prep.outputs.cache_key1 }}
path: ${{ steps.prep.outputs.cache_path1 }}
- uses: actions/cache/save@v3
- uses: actions/cache/save@v4
with:
key: ${{ steps.prep.outputs.cache_key2 }}
path: ${{ steps.prep.outputs.cache_path2 }}
Expand All @@ -105,11 +105,11 @@ jobs:
run: |
echo "artifact=WasmEdge-plugin-${{ matrix.plugin }}-${{ inputs.version }}-${{ inputs.docker_tag }}.tar.gz" >> $GITHUB_OUTPUT
echo "filename=plugin_${{ matrix.plugin }}.tar.gz" >> $GITHUB_OUTPUT
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
key: ${{ needs.prepare.outputs.cache_key1 }}
path: ${{ needs.prepare.outputs.cache_path1 }}
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
key: ${{ needs.prepare.outputs.cache_key2 }}
path: ${{ needs.prepare.outputs.cache_path2 }}
Expand Down

0 comments on commit 5b1ed76

Please sign in to comment.