Skip to content

Bump the github-actions group with 3 updates #1832

Bump the github-actions group with 3 updates

Bump the github-actions group with 3 updates #1832

Workflow file for this run

---
name: Clean Target Verification
on:
pull_request:
permissions: {}
env:
DEBUG_PRINT: true
jobs:
clean-clusters:
name: Cluster Clean-up
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- name: Deploy clusters
env:
TIMEOUT: 1m
run: make clusters
- name: Clean up clusters
run: make clean-clusters
- name: Check that clusters are gone
run: test "$(kind get clusters 2>&1)" = "No kind clusters found."
clean-generated:
name: Generated Files Clean-up
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- name: Build images
run: make images
- name: Clean up generated files
run: make clean-generated
- name: Check that image markers are gone
run: test package/.image.* = "package/.image.*"