github: add cache key to generate.yml flow
There are recent GH failures because the github cache action complains: ``` Input required and not supplied: key ``` This is slightly odd as we did not provide a cache key before and it was fine but *shrug*. We also don't really need a cache key, we always get the same cache, osbuild is smart enough to figure it out.
This commit is contained in:
parent
6b4bb850a7
commit
ba08a524a4
1 changed files with 1 additions and 0 deletions
1
.github/workflows/generate.yml
vendored
1
.github/workflows/generate.yml
vendored
|
|
@ -45,6 +45,7 @@ jobs:
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: /var/tmp/osbuild-mpp-cache
|
path: /var/tmp/osbuild-mpp-cache
|
||||||
|
key: no-key-needed-here
|
||||||
- name: "Regenerate Test Data"
|
- name: "Regenerate Test Data"
|
||||||
uses: osbuild/containers/src/actions/privdocker@552e30cf1b4ed19c6ddaa57f96c342b3dff4227b
|
uses: osbuild/containers/src/actions/privdocker@552e30cf1b4ed19c6ddaa57f96c342b3dff4227b
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue