From f4819500fb6605aeabcec641fff51676e504001a Mon Sep 17 00:00:00 2001 From: d34dscene Date: Wed, 12 Nov 2025 23:43:45 +0100 Subject: [PATCH] skip cache --- .github/workflows/cleanup.yaml | 19 ------------------- .github/workflows/release.yaml | 6 ++++++ .github/workflows/test.yaml | 1 + 3 files changed, 7 insertions(+), 19 deletions(-) delete mode 100644 .github/workflows/cleanup.yaml diff --git a/.github/workflows/cleanup.yaml b/.github/workflows/cleanup.yaml deleted file mode 100644 index 8263cca..0000000 --- a/.github/workflows/cleanup.yaml +++ /dev/null @@ -1,19 +0,0 @@ -name: Cleanup Registry - -on: - push: - branches: - - main - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - permissions: - packages: write - steps: - - name: ghcr.io cleanup action - uses: dataaxiom/ghcr-cleanup-action@v1 - with: - delete-untagged: true - token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index bcf9afa..5781e2b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -69,3 +69,9 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} COSIGN_YES: "true" + + - name: ghcr.io cleanup + uses: dataaxiom/ghcr-cleanup-action@v1 + with: + delete-untagged: true + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index fa7e561..f8010a9 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -49,4 +49,5 @@ jobs: - name: Run GolangCI-Lint uses: golangci/golangci-lint-action@v8 with: + skip-cache: true args: --timeout=10m