diff --git a/.github/workflows/check_examples.yml b/.github/workflows/check_examples.yml index 4c63f17e2..4e83d23cc 100644 --- a/.github/workflows/check_examples.yml +++ b/.github/workflows/check_examples.yml @@ -18,7 +18,7 @@ jobs: uses: ni/python-actions/setup-poetry@aa64e60612cb078b0c2ada666becbd70d4817d55 # v0.7.1 # Updating poetry.lock for all of the examples takes over 6 minutes, so it's worth caching. - name: Cache poetry.lock - uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 id: cache-poetry-lock with: path: 'examples/**/poetry.lock' @@ -35,7 +35,7 @@ jobs: echo "::endgroup::" done - name: Cache virtualenvs - uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 id: cache-venv with: path: 'examples/**/.venv' diff --git a/.github/workflows/run_system_tests.yml b/.github/workflows/run_system_tests.yml index d3fc641c2..18e18d9ec 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@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 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@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 id: cache-nimg with: path: | diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index 307fac7a9..d478fa06e 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@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 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@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/save@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 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@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 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@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 + uses: actions/cache/save@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 if: steps.restore-nims-all-extras.outputs.cache-hit != 'true' with: path: packages/service/.venv