Skip to content

Commit 3f5c6fa

Browse files
chore(deps): update github actions (#251)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 7201b40 commit 3f5c6fa

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

.github/workflows/Comment-on-PR.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
name: PR comment
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
1616

1717
- name: Comment on PR
18-
uses: thollander/actions-comment-pull-request@v1
18+
uses: thollander/actions-comment-pull-request@8a3fad13c20088e9eb0805666b9fe49509d2fec8 # v1.6.0
1919
with:
2020
message: |
2121
Thank you for contributing! :wave:

.github/workflows/Notify-Convention-Change.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@main
2424
- name: Comment on PR
25-
uses: thollander/actions-comment-pull-request@v1
25+
uses: thollander/actions-comment-pull-request@8a3fad13c20088e9eb0805666b9fe49509d2fec8 # v1.6.0
2626
with:
2727
message: |
2828
Thank you for contributing! :wave:

.github/workflows/PR.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
python-version: [3.9, 3.14] # oldest supported and latest tested
2323
steps:
2424
- name: Check out repo
25-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
25+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
2626
- uses: ni/python-actions/setup-python@9768589f3e50672173dad75a6fc181e4a85d33fa # v0.7.0
2727
with:
2828
python-version: ${{ matrix.python-version }}
@@ -37,7 +37,7 @@ jobs:
3737
python-version: [3.9, '3.10', 3.11, 3.12, 3.13, 3.14, 3.14t]
3838
steps:
3939
- name: Check out repo
40-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
40+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
4141
- name: Set up Python
4242
id: setup-python
4343
uses: ni/python-actions/setup-python@9768589f3e50672173dad75a6fc181e4a85d33fa # v0.7.0
@@ -46,7 +46,7 @@ jobs:
4646
- name: Set up Poetry
4747
uses: ni/python-actions/setup-poetry@9768589f3e50672173dad75a6fc181e4a85d33fa # v0.7.0
4848
- name: Cache virtualenv
49-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
49+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5050
with:
5151
path: .venv
5252
key: nps-${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('poetry.lock') }}

.github/workflows/Publish-Package.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@ jobs:
4040
needs: [check_package]
4141
steps:
4242
- name: Check out repo
43-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
43+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
4444
- name: Set up Python
45-
uses: ni/python-actions/setup-python@5286c12d65d90b2ea738bd57d452dc4366497581 # v0.4.1
45+
uses: ni/python-actions/setup-python@9768589f3e50672173dad75a6fc181e4a85d33fa # v0.7.0
4646
- name: Set up Poetry
47-
uses: ni/python-actions/setup-poetry@5286c12d65d90b2ea738bd57d452dc4366497581 # v0.4.1
47+
uses: ni/python-actions/setup-poetry@9768589f3e50672173dad75a6fc181e4a85d33fa # v0.7.0
4848
# If the version is 0.1.0-alpha.0, this will set the version to 0.1.0
4949
- name: Promote package version to release
5050
run: poetry version patch
5151
- name: Check project version
5252
if: github.event_name == 'release'
53-
uses: ni/python-actions/check-project-version@5286c12d65d90b2ea738bd57d452dc4366497581 # v0.4.1
53+
uses: ni/python-actions/check-project-version@9768589f3e50672173dad75a6fc181e4a85d33fa # v0.7.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@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
80+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
8181
with:
8282
repository-url: ${{ fromJson(env.environment-info)[env.environment].upload-url }}
8383
update_version:
@@ -89,16 +89,16 @@ jobs:
8989
pull-requests: write
9090
steps:
9191
- name: Check out repo
92-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
92+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
9393
- name: Set up Python
94-
uses: ni/python-actions/setup-python@5286c12d65d90b2ea738bd57d452dc4366497581 # v0.4.1
94+
uses: ni/python-actions/setup-python@9768589f3e50672173dad75a6fc181e4a85d33fa # v0.7.0
9595
- name: Set up Poetry
96-
uses: ni/python-actions/setup-poetry@5286c12d65d90b2ea738bd57d452dc4366497581 # v0.4.1
96+
uses: ni/python-actions/setup-poetry@9768589f3e50672173dad75a6fc181e4a85d33fa # v0.7.0
9797
# If the version is 0.1.0-alpha.0, this will set the version to 0.1.0
9898
- name: Promote package version to release
9999
run: poetry version patch
100100
- name: Update project version
101-
uses: ni/python-actions/update-project-version@5286c12d65d90b2ea738bd57d452dc4366497581 # v0.4.1
101+
uses: ni/python-actions/update-project-version@9768589f3e50672173dad75a6fc181e4a85d33fa # v0.7.0
102102
with:
103103
# The default GITHUB_TOKEN cannot trigger PR workflows.
104104
token: ${{ secrets.ADMIN_PAT }}

.github/workflows/Update-Poetry-Lock.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
needs: org-check
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
2525
with:
2626
ref: main # This is the branch the PR is to be created from
2727
persist-credentials: true # make the token that is used the GITHUB_TOKEN, instead of your personal token
@@ -33,7 +33,7 @@ jobs:
3333
echo "branch_name=automated-updates/update-poetry-lock" >> $GITHUB_OUTPUT
3434
- name: Create branch
3535
run: git checkout -b ${{ steps.vars.outputs.branch_name }}
36-
- uses: actions/setup-python@v2
36+
- uses: actions/setup-python@e9aba2c848f5ebd159c070c61ea2c4e2b122355e # v2.3.4
3737
with:
3838
python-version: ${{ env.PYTHON_VERSION }}
3939
- uses: Gr1N/setup-poetry@v8

0 commit comments

Comments
 (0)