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