Skip to content

Commit c92f5ec

Browse files
Update to latest versions of actions, to address deprecation warnings (#82)
1 parent f4926d5 commit c92f5ec

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/package-skill.yml

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

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222

@@ -44,14 +44,14 @@ jobs:
4444
-x '*.DS_Store'
4545
4646
- name: Upload artifact
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@v7
4848
with:
4949
name: temporal-developer-skill
5050
path: temporal-developer-skill.zip
5151

5252
- name: Create release
5353
if: steps.tag_check.outputs.exists == 'false'
54-
uses: softprops/action-gh-release@v2
54+
uses: softprops/action-gh-release@v3
5555
with:
5656
tag_name: ${{ steps.version.outputs.tag }}
5757
name: ${{ steps.version.outputs.tag }}

.github/workflows/sync-skill-to-plugins.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ jobs:
3434
steps:
3535
- name: Generate token from GitHub App
3636
id: app-token
37-
uses: actions/create-github-app-token@v2
37+
uses: actions/create-github-app-token@v3
3838
with:
3939
app-id: ${{ secrets.SKILL_T_DEV_APP_ID }}
4040
private-key: ${{ secrets.SKILL_T_DEV_KEY }}
4141
owner: ${{ github.repository_owner }}
4242

4343
- name: Checkout source
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v6
4545

4646
- name: Checkout target repo
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v6
4848
with:
4949
repository: ${{ matrix.repo }}
5050
token: ${{ steps.app-token.outputs.token }}

0 commit comments

Comments
 (0)