Skip to content

Commit 0c48c17

Browse files
authored
VLN-1526: fix unpinned-github-actions (#251)
Co-authored-by: picatz <14850816+picatz@users.noreply.github.com>
1 parent 3973e73 commit 0c48c17

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/package-skill.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v6
28+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2929
with:
3030
fetch-depth: 0
3131

@@ -53,14 +53,14 @@ jobs:
5353
-x '*.DS_Store'
5454
5555
- name: Upload artifact
56-
uses: actions/upload-artifact@v7
56+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
5757
with:
5858
name: temporal-developer-skill
5959
path: temporal-developer-skill.zip
6060

6161
- name: Create release
6262
if: steps.tag_check.outputs.exists == 'false'
63-
uses: softprops/action-gh-release@v3
63+
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0
6464
with:
6565
tag_name: ${{ steps.version.outputs.tag }}
6666
name: ${{ steps.version.outputs.tag }}
@@ -89,19 +89,19 @@ jobs:
8989
steps:
9090
- name: Generate token from GitHub App
9191
id: app-token
92-
uses: actions/create-github-app-token@v3
92+
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
9393
with:
9494
app-id: ${{ secrets.SKILL_T_DEV_APP_ID }}
9595
private-key: ${{ secrets.SKILL_T_DEV_KEY }}
9696
owner: ${{ github.repository_owner }}
9797

9898
- name: Checkout source
99-
uses: actions/checkout@v6
99+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
100100
with:
101101
fetch-depth: 0
102102

103103
- name: Checkout target repo
104-
uses: actions/checkout@v6
104+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
105105
with:
106106
repository: ${{ matrix.repo }}
107107
token: ${{ steps.app-token.outputs.token }}

0 commit comments

Comments
 (0)