From 4e27b23053f469608ca70950ea653104f09c1cb6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 05:15:47 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4.3.0 --- .github/workflows/check_examples.yml | 4 ++-- .github/workflows/run_system_tests.yml | 4 ++-- .github/workflows/run_unit_tests.yml | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check_examples.yml b/.github/workflows/check_examples.yml index a6a4f5d19..079738fee 100644 --- a/.github/workflows/check_examples.yml +++ b/.github/workflows/check_examples.yml @@ -18,7 +18,7 @@ jobs: uses: ni/python-actions/setup-poetry@9768589f3e50672173dad75a6fc181e4a85d33fa # v0.7.0 # Updating poetry.lock for all of the examples takes over 6 minutes, so it's worth caching. - name: Cache poetry.lock - uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 + uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 id: cache-poetry-lock with: path: 'examples/**/poetry.lock' @@ -35,7 +35,7 @@ jobs: echo "::endgroup::" done - name: Cache virtualenvs - uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 + uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 id: cache-venv with: path: 'examples/**/.venv' diff --git a/.github/workflows/run_system_tests.yml b/.github/workflows/run_system_tests.yml index 10d48644c..56675c50f 100644 --- a/.github/workflows/run_system_tests.yml +++ b/.github/workflows/run_system_tests.yml @@ -27,7 +27,7 @@ jobs: # ni-measurement-plugin-sdk-service - name: Cache virtualenv (ni-measurement-plugin-sdk-service) - uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 + uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 id: cache-nims with: path: | @@ -43,7 +43,7 @@ jobs: # ni-measurement-plugin-sdk-generator - name: Cache virtualenv (ni-measurement-plugin-sdk-generator) - uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 + uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 id: cache-nimg with: path: | diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 701decb7e..7574fe14f 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -29,7 +29,7 @@ jobs: # ni-measurement-plugin-sdk-service, no extras - name: Restore cached virtualenv (ni-measurement-plugin-sdk-service, no extras) - uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 + uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 id: restore-nims-no-extras with: path: packages/service/.venv @@ -38,7 +38,7 @@ jobs: run: poetry install -v working-directory: ./packages/service - name: Save cached virtualenv (ni-measurement-plugin-sdk-service, no extras) - uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 + uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 if: steps.restore-nims-no-extras.outputs.cache-hit != 'true' with: path: packages/service/.venv @@ -49,7 +49,7 @@ jobs: # ni-measurement-plugin-sdk-service, all extras - name: Restore cached virtualenv (ni-measurement-plugin-sdk-service, all extras) - uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 + uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 id: restore-nims-all-extras with: path: packages/service/.venv @@ -58,7 +58,7 @@ jobs: run: poetry install -v --all-extras working-directory: ./packages/service - name: Save cached ni-measurement-plugin-sdk-service virtualenv (all extras) - uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 + uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 if: steps.restore-nims-all-extras.outputs.cache-hit != 'true' with: path: packages/service/.venv