From 942d97601fbe74d256e5bba093e94a3252de4972 Mon Sep 17 00:00:00 2001 From: Connor Murphy <64382883+contrick64@users.noreply.github.com> Date: Wed, 11 Dec 2024 15:14:06 -0500 Subject: [PATCH] Update tests.yml to use cache@v4 and allow manual triggering --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 47d1765..e120491 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,6 +5,7 @@ on: branches: [ main ] pull_request: branches: [ main ] + workflow_dispatch: jobs: build: @@ -21,7 +22,7 @@ jobs: uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements/unit_tests.txt') }}