-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meta: Update changelog for 7.40.0 (#7315)
- Loading branch information
Showing
108 changed files
with
2,783 additions
and
11,076 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: "Restore dependency & build cache" | ||
description: "Restore the dependency & build cache." | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Check dependency cache | ||
id: dep-cache | ||
uses: actions/cache/restore@v3 | ||
with: | ||
path: ${{ env.CACHED_DEPENDENCY_PATHS }} | ||
key: ${{ env.DEPENDENCY_CACHE_KEY }} | ||
|
||
- name: Check build cache | ||
uses: actions/cache/restore@v3 | ||
id: build-cache | ||
with: | ||
path: ${{ env.CACHED_BUILD_PATHS }} | ||
key: ${{ env.BUILD_CACHE_KEY }} | ||
|
||
- name: Check if caches are restored | ||
uses: actions/github-script@v6 | ||
if: steps.dep-cache.outputs.cache-hit != 'true' || steps.build-cache.outputs.cache-hit != 'true' | ||
with: | ||
script: core.setFailed('Dependency or build cache could not be restored - please re-run ALL jobs.') |
Oops, something went wrong.