Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update to latest versions of actions, to address deprecation warnings
  • Loading branch information
donald-pinckney committed Apr 17, 2026
commit e67f337967bd3c4d3b832b8b1b157c62da09fd1c
6 changes: 3 additions & 3 deletions .github/workflows/package-skill.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -44,14 +44,14 @@ jobs:
-x '*.DS_Store'

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: temporal-developer-skill
path: temporal-developer-skill.zip

- name: Create release
if: steps.tag_check.outputs.exists == 'false'
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
tag_name: ${{ steps.version.outputs.tag }}
name: ${{ steps.version.outputs.tag }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sync-skill-to-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ jobs:
steps:
- name: Generate token from GitHub App
id: app-token
uses: actions/create-github-app-token@v2
uses: actions/create-github-app-token@v3
with:
app-id: ${{ secrets.SKILL_T_DEV_APP_ID }}
private-key: ${{ secrets.SKILL_T_DEV_KEY }}
owner: ${{ github.repository_owner }}

- name: Checkout source
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Checkout target repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ matrix.repo }}
token: ${{ steps.app-token.outputs.token }}
Expand Down