Skip to content

Commit 99e9304

Browse files
authored
ci: always display include analysis diff output in workflow
1 parent 80ed6e3 commit 99e9304

1 file changed

Lines changed: 1 addition & 12 deletions

File tree

.github/workflows/include-analysis-diff.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,7 @@ jobs:
3131
rawIncludeAnalysis = /data = ({.*})/.exec(rawIncludeAnalysis)[1]
3232
const { revision } = JSON.parse(rawIncludeAnalysis);
3333
34-
// Check if we've already analyzed this revision
35-
const cacheKey = `v1-chromium-include-analysis-diff-${revision}`;
36-
const cacheHit =
37-
(await cache.restoreCache(['/dev/null'], cacheKey, undefined, {
38-
lookupOnly: true,
39-
})) !== undefined;
40-
41-
if (!cacheHit) {
42-
core.setOutput('revision', revision);
43-
// Create a cache entry (only the name matters) to keep track of seen revisions
44-
await cache.saveCache(['/dev/null'], cacheKey);
45-
}
34+
core.setOutput('revision', revision);
4635
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
4736
if: ${{ steps.check-new-include-analysis.outputs.revision }}
4837
with:

0 commit comments

Comments
 (0)