Skip to content

Commit

Permalink
build(deps): bump actions/cache from 3 to 4 (#1861)
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]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Feb 2, 2024
1 parent 3c16f99 commit e0a6c60
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/algolia-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ jobs:
if: github.repository_owner == 'mbta'
steps:
- uses: actions/checkout@v4
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: ~/.asdf
key: ci-asdf-cache-${{ hashFiles('.tool-versions') }}
restore-keys: ci-asdf-cache-
- uses: mbta/actions/reshim-asdf@v2
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: deps
key: ci-mix-cache-${{ hashFiles('mix.lock') }}
restore-keys: ci-mix-cache-
# the running application runs Webpack to render React stuff :(, so need NPM too
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: assets/node_modules
key: ci-nodejs-cache-${{ hashFiles('assets/package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-all
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: |
_build
Expand Down

0 comments on commit e0a6c60

Please sign in to comment.