Skip to content

Commit

Permalink
chore(deps): bump the actions group
Browse files Browse the repository at this point in the history
Bumps the actions group in /.github/actions/prepare-build-env with 1 update: [actions/cache](https://github.com/actions/cache).

- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3.3.1...v3.3.2)

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

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and codeart1st committed Sep 9, 2023
1 parent 57e5cf1 commit e31466d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/prepare-build-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:

- name: Cache rust-toolchain (restore)
id: rustup-cache
uses: actions/cache/restore@v3.3.1
uses: actions/cache/restore@v3.3.2
with:
path: |
~/.rustup/toolchains
Expand All @@ -49,7 +49,7 @@ runs:
echo "version=$(rustc --version | cut -d ' ' -f 2)" >> $GITHUB_OUTPUT
- name: Cache rust-toolchain (save)
uses: actions/cache/save@v3.3.1
uses: actions/cache/save@v3.3.2
if: steps.rustup-cache.outputs.cache-hit != 'true' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop')
with:
path: |
Expand All @@ -60,7 +60,7 @@ runs:

- name: Cache cargo output (restore)
id: cargo-cache
uses: actions/cache/restore@v3.3.1
uses: actions/cache/restore@v3.3.2
with:
path: |
~/.cargo/bin/
Expand Down

0 comments on commit e31466d

Please sign in to comment.