Skip to content

Commit e8236e1

Browse files
authored
[chore] Pin third-party GitHub Actions to commit SHAs (#4076)
1 parent 79a63de commit e8236e1

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/dev-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
env:
6767
COMFYUI_FRONTEND_VERSION: ${{ format('{0}.dev{1}', needs.build.outputs.version, inputs.devVersion) }}
6868
- name: Publish pypi package
69-
uses: pypa/gh-action-pypi-publish@release/v1
69+
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc
7070
with:
7171
password: ${{ secrets.PYPI_TOKEN }}
7272
packages-dir: comfyui_frontend_package/dist

.github/workflows/i18n-custom-nodes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
git commit -m "Update locales"
137137
138138
- name: Install SSH key For PUSH
139-
uses: shimataro/ssh-key-action@v2
139+
uses: shimataro/ssh-key-action@d4fffb50872869abe2d9a9098a6d9c5aa7d16be4
140140
with:
141141
# PR private key from action server
142142
key: ${{ secrets.PR_SSH_PRIVATE_KEY }}

.github/workflows/i18n-node-defs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
3434
working-directory: ComfyUI_frontend
3535
- name: Create Pull Request
36-
uses: peter-evans/create-pull-request@v7
36+
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e
3737
with:
3838
token: ${{ secrets.PR_GH_TOKEN }}
3939
commit-message: "Update locales for node definitions"

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
name: dist-files
5555
- name: Create release
5656
id: create_release
57-
uses: softprops/action-gh-release@v2
57+
uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631
5858
env:
5959
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6060
with:
@@ -93,7 +93,7 @@ jobs:
9393
env:
9494
COMFYUI_FRONTEND_VERSION: ${{ needs.build.outputs.version }}
9595
- name: Publish pypi package
96-
uses: pypa/gh-action-pypi-publish@release/v1
96+
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc
9797
with:
9898
password: ${{ secrets.PYPI_TOKEN }}
9999
packages-dir: comfyui_frontend_package/dist

.github/workflows/update-electron-types.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_OUTPUT
3131
3232
- name: Create Pull Request
33-
uses: peter-evans/create-pull-request@v7
33+
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e
3434
with:
3535
token: ${{ secrets.PR_GH_TOKEN }}
3636
commit-message: '[chore] Update electron-types to ${{ steps.get-version.outputs.NEW_VERSION }}'

.github/workflows/update-litegraph.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_OUTPUT
3030
3131
- name: Create Pull Request
32-
uses: peter-evans/create-pull-request@v7
32+
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e
3333
with:
3434
token: ${{ secrets.PR_GH_TOKEN }}
3535
commit-message: '[chore] Update litegraph to ${{ steps.get-version.outputs.NEW_VERSION }}'

.github/workflows/update-registry-types.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
7676
- name: Create Pull Request
7777
if: steps.check-changes.outputs.changed == 'true'
78-
uses: peter-evans/create-pull-request@v7
78+
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e
7979
with:
8080
token: ${{ secrets.PR_GH_TOKEN }}
8181
commit-message: '[chore] Update Comfy Registry API types from comfy-api@${{ steps.api-info.outputs.commit }}'

.github/workflows/version-bump.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_OUTPUT
3939
4040
- name: Create Pull Request
41-
uses: peter-evans/create-pull-request@v7
41+
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e
4242
with:
4343
token: ${{ secrets.PR_GH_TOKEN }}
4444
commit-message: '[release] Bump version to ${{ steps.bump-version.outputs.NEW_VERSION }}'

0 commit comments

Comments
 (0)