From 4388c4cb39d1e728242091c7bf3511d2adecafcd Mon Sep 17 00:00:00 2001 From: Sean Steberis <103416906+seansteberisal@users.noreply.github.com> Date: Tue, 7 Jan 2025 13:25:36 +0000 Subject: [PATCH] Fix: [AEA-0000] - Updated github action cache version to v4 (#213) ## Summary - Routine Change --- .github/workflows/regression_tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/regression_tests.yml b/.github/workflows/regression_tests.yml index 3216c9a5..fac7b432 100644 --- a/.github/workflows/regression_tests.yml +++ b/.github/workflows/regression_tests.yml @@ -69,7 +69,7 @@ jobs: uses: asdf-vm/actions/setup@05e0d2ed97b598bfce82fd30daf324ae0c4570e6 - name: Cache asdf - uses: actions/cache@a2ed59d39b352305bdd2f628719a53b2cc4f9613 + uses: actions/cache@v4 with: path: | ~/.asdf @@ -83,7 +83,7 @@ jobs: PYTHON_CONFIGURE_OPTS: --enable-shared - name: Cache Virtualenv - uses: actions/cache@a2ed59d39b352305bdd2f628719a53b2cc4f9613 + uses: actions/cache@v4 id: cache-venv with: path: .venv @@ -163,7 +163,7 @@ jobs: repositories: "electronic-prescription-service-api-regression-tests,eps-test-reports" - name: Report failure on test failure - if: steps.tests.outcome != 'success' || ( steps.sha1_tests.outcome != 'success' && steps.sha1_tests.outcome != 'skipped' ) + if: steps.tests.outcome != 'success' || ( steps.sha1_tests.outcome != 'success' && steps.sha1_tests.outcome != 'skipped' ) run: | poetry run python scripts/send_test_results.py --token=${{ steps.generate-token.outputs.token }} --run_id ${{GITHUB.RUN_ID}} echo The regression tests step failed, this likely means there are test failures.