From c2df4e860403c94b4f030ef6fc85bddbe2100e66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Sat, 15 Jun 2024 09:54:05 +0200 Subject: [PATCH] ci: remove cache before test --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6bbe189..eae35b2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,11 +8,12 @@ on: - main permissions: - contents: read + contents: write jobs: remove-cache: runs-on: ubuntu-latest + permisions: write-all steps: - name: Checkout uses: actions/checkout@v4 @@ -29,6 +30,8 @@ jobs: - run: | gh cache delete --all + env: + GH_TOKEN: ${{ github.token }} setup-bun: runs-on: ${{ matrix.os }}