From 3c211b69c33c4ef607aefb5335d12b0c3ead5d2e Mon Sep 17 00:00:00 2001 From: Jaremy Creechley Date: Tue, 18 Jul 2023 17:00:18 -0700 Subject: [PATCH] re-add cache nonce --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7693595..62b59ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,9 @@ on: pull_request: workflow_dispatch: +env: + cache_nonce: 0 # Allows for easily busting actions/cache caches + jobs: build: timeout-minutes: 90 @@ -92,7 +95,7 @@ jobs: path: | ~/.nimble ${{ github.workspace }}/.nimble - key: ${{ matrix.builder }}-${{ matrix.target.cpu }}-dotnimble-${{ hashFiles('nimble.lock') }} + key: ${{ matrix.builder }}-${{ matrix.target.cpu }}-dotnimble-${{ hashFiles('nimble.lock') }}-${{ env.cache_nonce }} - name: Setup Nimble uses: "./.github/actions/install_nimble"