Skip to content

Commit 9255b89

Browse files
chore(deps): update github actions (major) (#1283)
chore(deps): update github actions Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 234640a commit 9255b89

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/check_examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: ni/python-actions/setup-poetry@aa64e60612cb078b0c2ada666becbd70d4817d55 # v0.7.1
1919
# Updating poetry.lock for all of the examples takes over 6 minutes, so it's worth caching.
2020
- name: Cache poetry.lock
21-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
21+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
2222
id: cache-poetry-lock
2323
with:
2424
path: 'examples/**/poetry.lock'
@@ -35,7 +35,7 @@ jobs:
3535
echo "::endgroup::"
3636
done
3737
- name: Cache virtualenvs
38-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
38+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
3939
id: cache-venv
4040
with:
4141
path: 'examples/**/.venv'

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
run: poetry build
7070
working-directory: ./packages/${{ matrix.package }}
7171
- name: Upload build artifacts
72-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
72+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
7373
with:
7474
name: ${{ matrix.package }}-distribution-packages
7575
path: ./packages/${{ matrix.package }}/dist/*
@@ -89,7 +89,7 @@ jobs:
8989
package: [generator, sdk, service]
9090
steps:
9191
- name: Download build artifacts
92-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
92+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
9393
with:
9494
name: ${{ matrix.package }}-distribution-packages
9595
path: dist/

.github/workflows/report_test_results.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Check out repo
1616
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
1717
- name: Download test results
18-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
18+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
1919
with:
2020
path: test_results
2121
pattern: test_results_*

.github/workflows/run_system_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
# ni-measurement-plugin-sdk-service
2929
- name: Cache virtualenv (ni-measurement-plugin-sdk-service)
30-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
30+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
3131
id: cache-nims
3232
with:
3333
path: |
@@ -43,7 +43,7 @@ jobs:
4343

4444
# ni-measurement-plugin-sdk-generator
4545
- name: Cache virtualenv (ni-measurement-plugin-sdk-generator)
46-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
46+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
4747
id: cache-nimg
4848
with:
4949
path: |
@@ -58,7 +58,7 @@ jobs:
5858
working-directory: ./packages/generator
5959

6060
- name: Upload test results
61-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
61+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
6262
with:
6363
name: test_results_system_${{ matrix.configuration }}
6464
path: |

.github/workflows/run_unit_tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
# ni-measurement-plugin-sdk-service, no extras
3131
- name: Restore cached virtualenv (ni-measurement-plugin-sdk-service, no extras)
32-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
32+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
3333
id: restore-nims-no-extras
3434
with:
3535
path: packages/service/.venv
@@ -38,7 +38,7 @@ jobs:
3838
run: poetry install -v
3939
working-directory: ./packages/service
4040
- name: Save cached virtualenv (ni-measurement-plugin-sdk-service, no extras)
41-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
41+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
4242
if: steps.restore-nims-no-extras.outputs.cache-hit != 'true'
4343
with:
4444
path: packages/service/.venv
@@ -49,7 +49,7 @@ jobs:
4949

5050
# ni-measurement-plugin-sdk-service, all extras
5151
- name: Restore cached virtualenv (ni-measurement-plugin-sdk-service, all extras)
52-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
52+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
5353
id: restore-nims-all-extras
5454
with:
5555
path: packages/service/.venv
@@ -58,7 +58,7 @@ jobs:
5858
run: poetry install -v --all-extras
5959
working-directory: ./packages/service
6060
- name: Save cached ni-measurement-plugin-sdk-service virtualenv (all extras)
61-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
61+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
6262
if: steps.restore-nims-all-extras.outputs.cache-hit != 'true'
6363
with:
6464
path: packages/service/.venv
@@ -68,7 +68,7 @@ jobs:
6868
working-directory: ./packages/service
6969

7070
- name: Upload test results
71-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
71+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
7272
with:
7373
name: test_results_unit_${{ matrix.os }}_py${{ matrix.python-version }}
7474
path: ./packages/service/test_results/*.xml

0 commit comments

Comments
 (0)