We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd38095 commit 21d2fbdCopy full SHA for 21d2fbd
.github/actions/generate-datasheets/action.yml
@@ -12,16 +12,18 @@ inputs:
12
runs:
13
using: composite
14
steps:
15
+ - uses: actions/checkout@v4
16
+ with:
17
+ fetch-depth: 1
18
+
19
- uses: actions/cache@v4
20
id: cache
21
with:
22
path: ${{ inputs.datasheets-path }}
23
key: ${{ runner.os }}-datasheets-${{ hashFiles('**/*datasheet.md') }}
-
- - uses: actions/checkout@v4
- if: steps.cache.outputs.cache-hit != 'true'
- with:
24
- fetch-depth: 1
+ # FIXME: remove restore-keys when the cache is stable
25
+ restore-keys: |
26
+ ${{ runner.os }}-datasheets-
27
28
- uses: actions/setup-node@v4
29
if: steps.cache.outputs.cache-hit != 'true'
0 commit comments