mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-05 07:26:55 +00:00
chore: free disk space before running jobs (#8468)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
parent
fd01e50280
commit
4925f7a4b3
2 changed files with 16 additions and 0 deletions
8
.github/actions/setup-build-env/action.yaml
vendored
8
.github/actions/setup-build-env/action.yaml
vendored
|
@ -12,6 +12,14 @@ inputs:
|
|||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- uses: jlumbroso/free-disk-space@76866dbe54312617f00798d1762df7f43def6e5c # v1.2.0
|
||||
with:
|
||||
tool-cache: true
|
||||
android: true
|
||||
dotnet: true
|
||||
haskell: true
|
||||
large-packages: false
|
||||
swap-storage: true
|
||||
- shell: bash
|
||||
if: ${{ inputs.unshallow == 'true' }}
|
||||
run: |
|
||||
|
|
8
.github/actions/setup-test-env/action.yaml
vendored
8
.github/actions/setup-test-env/action.yaml
vendored
|
@ -10,6 +10,14 @@ inputs:
|
|||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- uses: jlumbroso/free-disk-space@76866dbe54312617f00798d1762df7f43def6e5c # v1.2.0
|
||||
with:
|
||||
tool-cache: true
|
||||
android: true
|
||||
dotnet: true
|
||||
haskell: true
|
||||
large-packages: false
|
||||
swap-storage: true
|
||||
- shell: bash
|
||||
run: |
|
||||
export KIND_IMAGE=kindest/node:${{ inputs.version }}
|
||||
|
|
Loading…
Add table
Reference in a new issue