From 601affafd4b87f61dca0b2e1f6ff4f0d46e495f0 Mon Sep 17 00:00:00 2001 From: omo50 <144749186+omo50@users.noreply.github.com> Date: Wed, 4 Mar 2026 17:40:56 -0600 Subject: [PATCH] chore(actions): attempt to fix builds --- .forgejo/workflows/rc-builds.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.forgejo/workflows/rc-builds.yml b/.forgejo/workflows/rc-builds.yml index 1a16b5bb9..ec3e9e428 100644 --- a/.forgejo/workflows/rc-builds.yml +++ b/.forgejo/workflows/rc-builds.yml @@ -32,21 +32,13 @@ jobs: with: fetch-depth: 1 - - name: Cache Packwiz Binary - uses: actions/cache@v3 - id: cache-packwiz - with: - path: ~/go/bin/packwiz - key: packwiz-binary-${{ runner.os }}-v2 - - name: Set up Go - if: steps.cache-packwiz.outputs.cache-hit != 'true' uses: actions/setup-go@v3 with: go-version: 'stable' + cache: false - name: Install Packwiz - if: steps.cache-packwiz.outputs.cache-hit != 'true' run: go install github.com/packwiz/packwiz@latest - name: Add Packwiz to PATH