Skip to content

Commit 8476f70

Browse files
chore(deps): update actions/cache action to v4.2.3 (#732)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 99ec649 commit 8476f70

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Poetry
2121
uses: ni/python-actions/[email protected]
2222
- name: Cache virtualenv (all extras)
23-
uses: actions/cache@v4
23+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
2424
with:
2525
path: .venv
2626
key: nidaqmx-all-extras-${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('poetry.lock') }}

.github/workflows/generate_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Poetry
1818
uses: ni/python-actions/[email protected]
1919
- name: Cache virtualenvs
20-
uses: actions/cache@v4
20+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
2121
with:
2222
path: |
2323
.venv

.github/workflows/run_system_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Import DAQmx config
2525
run: C:\nidaqmxconfig\targets\win64U\x64\msvc-14.0\release\nidaqmxconfig.exe --eraseconfig --import tests\max_config\nidaqmxMaxConfig.ini
2626
- name: Cache virtualenvs
27-
uses: actions/cache@v4
27+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
2828
with:
2929
path: |
3030
.venv

.github/workflows/run_unit_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Poetry
2626
uses: ni/python-actions/[email protected]
2727
- name: Restore cached virtualenv (main only)
28-
uses: actions/cache/restore@v4
28+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
2929
id: restore-nidaqmx-main-only
3030
with:
3131
path: .venv
@@ -37,13 +37,13 @@ jobs:
3737
- name: check installdriver subcommand can be invoked
3838
run: poetry run nidaqmx installdriver --help
3939
- name: Save cached virtualenv (main only)
40-
uses: actions/cache/save@v4
40+
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
4141
if: steps.restore-nidaqmx-main-only.outputs.cache-hit != 'true'
4242
with:
4343
path: .venv
4444
key: ${{ steps.restore-nidaqmx-main-only.outputs.cache-primary-key }}
4545
- name: Cache virtualenv (with dev dependencies)
46-
uses: actions/cache@v4
46+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
4747
with:
4848
path: .venv
4949
key: nidaqmx-with-dev-${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}

0 commit comments

Comments
 (0)