Skip to content

Commit 67cabd1

Browse files
chore(deps): update github actions
1 parent 72bda88 commit 67cabd1

5 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/check_docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
- name: Check out repo
1313
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1414
- name: Set up Python
15-
uses: ni/python-actions/setup-python@aa64e60612cb078b0c2ada666becbd70d4817d55 # 0.7.1
15+
uses: ni/python-actions/setup-python@a2554c7e5680982d3355677b2290e48b60678744 # 0.8.0
1616
id: setup-python
1717
- name: Set up Poetry
18-
uses: ni/python-actions/setup-poetry@aa64e60612cb078b0c2ada666becbd70d4817d55 # 0.7.1
18+
uses: ni/python-actions/setup-poetry@a2554c7e5680982d3355677b2290e48b60678744 # 0.8.0
1919
- name: Check for lock changes
2020
run: poetry check --lock
2121
- name: Cache virtualenv (with docs)
22-
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
22+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
2323
with:
2424
path: .venv
2525
key: nipanel-with-docs-${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('poetry.lock') }}

.github/workflows/check_nipanel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
- name: Check out repo
1717
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1818
- name: Set up Python
19-
uses: ni/python-actions/setup-python@aa64e60612cb078b0c2ada666becbd70d4817d55 # 0.7.1
19+
uses: ni/python-actions/setup-python@a2554c7e5680982d3355677b2290e48b60678744 # 0.8.0
2020
id: setup-python
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Set up Poetry
24-
uses: ni/python-actions/setup-poetry@aa64e60612cb078b0c2ada666becbd70d4817d55 # 0.7.1
24+
uses: ni/python-actions/setup-poetry@a2554c7e5680982d3355677b2290e48b60678744 # 0.8.0
2525
- name: Analyze Python Project
26-
uses: ni/python-actions/analyze-project@aa64e60612cb078b0c2ada666becbd70d4817d55 # 0.7.1
26+
uses: ni/python-actions/analyze-project@a2554c7e5680982d3355677b2290e48b60678744 # 0.8.0
2727
with:
2828
install-args: "--with examples"
2929
- name: Bandit security checks

.github/workflows/publish.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ jobs:
4545
- name: Check out repo
4646
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4747
- name: Set up Python
48-
uses: ni/python-actions/setup-python@aa64e60612cb078b0c2ada666becbd70d4817d55 # 0.7.1
48+
uses: ni/python-actions/setup-python@a2554c7e5680982d3355677b2290e48b60678744 # 0.8.0
4949
- name: Set up Poetry
50-
uses: ni/python-actions/setup-poetry@aa64e60612cb078b0c2ada666becbd70d4817d55 # 0.7.1
50+
uses: ni/python-actions/setup-poetry@a2554c7e5680982d3355677b2290e48b60678744 # 0.8.0
5151
- name: Check project version
5252
if: github.event_name == 'release'
53-
uses: ni/python-actions/check-project-version@aa64e60612cb078b0c2ada666becbd70d4817d55 # 0.7.1
53+
uses: ni/python-actions/check-project-version@a2554c7e5680982d3355677b2290e48b60678744 # 0.8.0
5454
- name: Build distribution packages
5555
run: poetry build
5656
- name: Upload build artifacts
@@ -77,7 +77,7 @@ jobs:
7777
path: dist/
7878
- run: ls -lR
7979
- name: Upload to ${{ env.environment }}
80-
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
80+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
8181
with:
8282
repository-url: ${{ fromJson(env.environment-info)[env.environment].upload-url }}
8383
update_version:
@@ -91,8 +91,8 @@ jobs:
9191
- name: Check out repo
9292
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
9393
- name: Set up Python
94-
uses: ni/python-actions/setup-python@aa64e60612cb078b0c2ada666becbd70d4817d55 # 0.7.1
94+
uses: ni/python-actions/setup-python@a2554c7e5680982d3355677b2290e48b60678744 # 0.8.0
9595
- name: Set up Poetry
96-
uses: ni/python-actions/setup-poetry@aa64e60612cb078b0c2ada666becbd70d4817d55 # 0.7.1
96+
uses: ni/python-actions/setup-poetry@a2554c7e5680982d3355677b2290e48b60678744 # 0.8.0
9797
- name: Update project version
98-
uses: ni/python-actions/update-project-version@aa64e60612cb078b0c2ada666becbd70d4817d55 # 0.7.1
98+
uses: ni/python-actions/update-project-version@a2554c7e5680982d3355677b2290e48b60678744 # 0.8.0

.github/workflows/report_test_results.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: List downloaded files
2525
run: ls -lR
2626
- name: Publish test results
27-
uses: EnricoMi/publish-unit-test-result-action@27d65e188ec43221b20d26de30f4892fad91df2f # v2.22.0
27+
uses: EnricoMi/publish-unit-test-result-action@c950f6fb443cb5af20a377fd0dfaa78838901040 # v2.23.0
2828
with:
2929
files: "test_results/**/*.xml"
3030
if: always()

.github/workflows/run_unit_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
- name: Check out repo
2020
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2121
- name: Set up Python
22-
uses: ni/python-actions/setup-python@aa64e60612cb078b0c2ada666becbd70d4817d55 # 0.7.1
22+
uses: ni/python-actions/setup-python@a2554c7e5680982d3355677b2290e48b60678744 # 0.8.0
2323
id: setup-python
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
- name: Set up Poetry
27-
uses: ni/python-actions/setup-poetry@aa64e60612cb078b0c2ada666becbd70d4817d55 # 0.7.1
27+
uses: ni/python-actions/setup-poetry@a2554c7e5680982d3355677b2290e48b60678744 # 0.8.0
2828
- name: Cache virtualenv
29-
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
29+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
3030
with:
3131
path: .venv
3232
key: nipanel-${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('poetry.lock') }}

0 commit comments

Comments
 (0)