Skip to content

Commit 42e737a

Browse files
Bump actions/cache from 3 to 4 (#27)
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>
1 parent 05b1826 commit 42e737a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
API_KEY=${{ secrets.API_KEY }} GOOGLE_APP_ID=${{ secrets.GOOGLE_APP_ID }} GCM_SENDER_ID=${{ secrets.GCM_SENDER_ID }} ./setup.sh
5656
- name: Restore Build Cache
57-
uses: actions/cache@v3
57+
uses: actions/cache@v4
5858
with:
5959
path: build
6060
key: release-build-cache-${{ runner.os }}-${{ hashFiles('**/Package.resolved') }}
@@ -136,7 +136,7 @@ jobs:
136136
./dist
137137
ls -alR ./dist
138138
- name: Save Build Cache
139-
uses: actions/cache@v3
139+
uses: actions/cache@v4
140140
with:
141141
path: build
142142
key: release-build-cache-${{ runner.os }}-${{ hashFiles('**/Package.resolved') }}

.github/workflows/test-and-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: |
3535
./setup.sh
3636
- name: Restore Build Cache
37-
uses: actions/cache@v3
37+
uses: actions/cache@v4
3838
with:
3939
path: build
4040
key: build-cache-${{ runner.os }}-${{ matrix.os }}-${{ matrix.arch }}-${{ hashFiles('**/Package.resolved') }}
@@ -49,7 +49,7 @@ jobs:
4949
-destination "platform=macOS,arch=${{ matrix.arch }}" \
5050
-resultBundlePath "artifacts/ResultBundle-${{ matrix.os }}-${{ matrix.arch }}.xcresult"
5151
- name: Save Build Cache
52-
uses: actions/cache@v3
52+
uses: actions/cache@v4
5353
with:
5454
path: build
5555
key: test-build-cache-${{ runner.os }}-${{ matrix.os }}-${{ matrix.arch }}-${{ hashFiles('**/Package.resolved') }}

0 commit comments

Comments
 (0)