diff --git a/.github/workflows/purgeGHCR.yml b/.github/workflows/purgeGHCR.yml index cfed01b0..71ee9f99 100644 --- a/.github/workflows/purgeGHCR.yml +++ b/.github/workflows/purgeGHCR.yml @@ -1,4 +1,4 @@ -Name: Purge untagged images from GHCR +name: Purge untagged images from GHCR on: workflow_dispatch @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - user: actions/checkout@v2 + uses: actions/checkout@v2 - name: Prune Netmaker uses: vlaurin/action-ghcr-prune@main with: @@ -24,4 +24,5 @@ jobs: organization: gravitl container: netclient dry-run: true # Dry-run first, then change to `false` - untagged: true \ No newline at end of file + untagged: true +