mirror of
https://github.com/actions/cache.git
synced 2026-07-02 18:33:46 +08:00
Compare commits
4 Commits
v4.2.1
...
4670c23b89
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4670c23b89 | ||
|
|
7921ae235b | ||
|
|
3937731706 | ||
|
|
5cdbd5c7ec |
@@ -2,7 +2,7 @@ name: 'Publish Immutable Action Version'
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
release:
|
release:
|
||||||
types: [published]
|
types: [released]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
publish:
|
publish:
|
||||||
|
|||||||
2
dist/restore-only/index.js
vendored
2
dist/restore-only/index.js
vendored
@@ -64924,7 +64924,7 @@ function restoreImpl(stateProvider, earlyExit) {
|
|||||||
}
|
}
|
||||||
// Store the matched cache key in states
|
// Store the matched cache key in states
|
||||||
stateProvider.setState(constants_1.State.CacheMatchedKey, cacheKey);
|
stateProvider.setState(constants_1.State.CacheMatchedKey, cacheKey);
|
||||||
const isExactKeyMatch = utils.isExactKeyMatch(core.getInput(constants_1.Inputs.Key, { required: true }), cacheKey);
|
const isExactKeyMatch = utils.isExactKeyMatch(primaryKey, cacheKey);
|
||||||
core.setOutput(constants_1.Outputs.CacheHit, isExactKeyMatch.toString());
|
core.setOutput(constants_1.Outputs.CacheHit, isExactKeyMatch.toString());
|
||||||
if (lookupOnly) {
|
if (lookupOnly) {
|
||||||
core.info(`Cache found and can be restored from key: ${cacheKey}`);
|
core.info(`Cache found and can be restored from key: ${cacheKey}`);
|
||||||
|
|||||||
2
dist/restore/index.js
vendored
2
dist/restore/index.js
vendored
@@ -64924,7 +64924,7 @@ function restoreImpl(stateProvider, earlyExit) {
|
|||||||
}
|
}
|
||||||
// Store the matched cache key in states
|
// Store the matched cache key in states
|
||||||
stateProvider.setState(constants_1.State.CacheMatchedKey, cacheKey);
|
stateProvider.setState(constants_1.State.CacheMatchedKey, cacheKey);
|
||||||
const isExactKeyMatch = utils.isExactKeyMatch(core.getInput(constants_1.Inputs.Key, { required: true }), cacheKey);
|
const isExactKeyMatch = utils.isExactKeyMatch(primaryKey, cacheKey);
|
||||||
core.setOutput(constants_1.Outputs.CacheHit, isExactKeyMatch.toString());
|
core.setOutput(constants_1.Outputs.CacheHit, isExactKeyMatch.toString());
|
||||||
if (lookupOnly) {
|
if (lookupOnly) {
|
||||||
core.info(`Cache found and can be restored from key: ${cacheKey}`);
|
core.info(`Cache found and can be restored from key: ${cacheKey}`);
|
||||||
|
|||||||
@@ -71,11 +71,7 @@ export async function restoreImpl(
|
|||||||
// Store the matched cache key in states
|
// Store the matched cache key in states
|
||||||
stateProvider.setState(State.CacheMatchedKey, cacheKey);
|
stateProvider.setState(State.CacheMatchedKey, cacheKey);
|
||||||
|
|
||||||
const isExactKeyMatch = utils.isExactKeyMatch(
|
const isExactKeyMatch = utils.isExactKeyMatch(primaryKey, cacheKey);
|
||||||
core.getInput(Inputs.Key, { required: true }),
|
|
||||||
cacheKey
|
|
||||||
);
|
|
||||||
|
|
||||||
core.setOutput(Outputs.CacheHit, isExactKeyMatch.toString());
|
core.setOutput(Outputs.CacheHit, isExactKeyMatch.toString());
|
||||||
if (lookupOnly) {
|
if (lookupOnly) {
|
||||||
core.info(`Cache found and can be restored from key: ${cacheKey}`);
|
core.info(`Cache found and can be restored from key: ${cacheKey}`);
|
||||||
|
|||||||
Reference in New Issue
Block a user