From 0faea6e54ec5e8294a47971d1cac8c627521d582 Mon Sep 17 00:00:00 2001 From: karo Date: Thu, 19 Mar 2026 13:00:39 +0100 Subject: [PATCH] ci: remove broken GHCR cleanup job The ghcr-cleanup-action uses DELETE /users/{user}/packages/... which only works for org packages, not user packages. The 127 is a user account so this always 404s. Remove the non-functional job. --- .github/workflows/go.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 09c3f6f1..cb2ab39a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -188,19 +188,3 @@ jobs: ghcr.io/the127/keyline:dev-${{ github.run_number }} ghcr.io/the127/keyline:dev-${{ github.sha }} - cleanup-old-dev-builds: - runs-on: ubuntu-latest - needs: container-build - if: github.ref == 'refs/heads/main' - permissions: - packages: write - steps: - - name: Delete old dev build images - uses: dataaxiom/ghcr-cleanup-action@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - package: keyline - owner: The127 - keep-n-tagged: 10 - exclude-tags: latest,v* - older-than: 7 days