From bd2c0c3cf4a1f1b3155a1748b337d49a00a16c43 Mon Sep 17 00:00:00 2001 From: Philippe Vaucher Date: Fri, 16 Aug 2024 08:12:45 +0200 Subject: [PATCH] Work around limit of 100 untagged images removal --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 11e7b429..8a3c68d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,8 +50,8 @@ jobs: if: ${{ always() }} runs-on: ubuntu-latest steps: - - uses: actions/delete-package-versions@main + - uses: dataaxiom/ghcr-cleanup-action@main with: - package-name: 'emacs' - package-type: 'container' - delete-only-untagged-versions: 'true' + package: emacs + dry-run: true + token: ${{ secrets.GITHUB_TOKEN }}