Skip to content

Commit e751bdb

Browse files
committed
Upgrade GitHub Actions to latest versions
Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com>
1 parent d708926 commit e751bdb

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

.github/workflows/claude-code-doc-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Run Claude Code Review
3434
id: claude-review
35-
uses: anthropics/claude-code-action@v1
35+
uses: anthropics/claude-code-action@v1.0.54
3636
with:
3737
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
3838
track_progress: true # Forces tag mode with tracking comments

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Run Claude Code
3434
id: claude
35-
uses: anthropics/claude-code-action@v1
35+
uses: anthropics/claude-code-action@v1.0.54
3636
with:
3737
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
3838

.github/workflows/docs-update-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
6464
- name: Create Pull Request
6565
if: steps.changes.outputs.has_changes == 'true'
66-
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
66+
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
6767
with:
6868
commit-message: 'docs: update toolkits and API data'
6969
title: 'docs: Update toolkits and API data'

.github/workflows/docs.changelog-notification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
101101
- name: Send Slack Notification
102102
if: steps.changed-files.outputs.has_changelog == 'true'
103-
uses: slackapi/slack-github-action@fcfb566f8b0aab22203f066d80ca1d7e4b5d05b3 # v1.27.1
103+
uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
104104
with:
105105
payload: ${{ steps.extract-metadata.outputs.slack_payload }}
106106
env:

.github/workflows/docs.health-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
9999
- name: Notify Slack
100100
if: steps.check.outputs.has_failures == 'true'
101-
uses: slackapi/slack-github-action@fcfb566f8b0aab22203f066d80ca1d7e4b5d05b3 # v1.27.1
101+
uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
102102
with:
103103
payload: ${{ steps.check.outputs.slack_payload }}
104104
env:

.github/workflows/generate-sdk-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- run: pnpm --filter @composio/core generate:docs
2828

2929
- name: Create Pull Request
30-
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
30+
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
3131
with:
3232
commit-message: 'docs: auto-generate TypeScript SDK reference'
3333
title: 'docs: Update TypeScript SDK reference'
@@ -52,7 +52,7 @@ jobs:
5252
- run: cd python && uv run --with griffe python scripts/generate-docs.py
5353

5454
- name: Create Pull Request
55-
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
55+
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
5656
with:
5757
commit-message: 'docs: auto-generate Python SDK reference'
5858
title: 'docs: Update Python SDK reference'

.github/workflows/py.test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
uses: actions/checkout@v6
174174

175175
- name: Install UV
176-
uses: astral-sh/setup-uv@v6
176+
uses: astral-sh/setup-uv@v7
177177
with:
178178
version: '0.8.19'
179179

.github/workflows/ts.release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
3333
- name: Create Release Pull Request & Publish packages
3434
id: changesets
35-
uses: changesets/action@v1
35+
uses: changesets/action@v1.7.0
3636
if: github.event_name != 'workflow_dispatch' # only run on master merges
3737
env:
3838
GITHUB_TOKEN: ${{ secrets.CI_BOT_TOKEN }}
@@ -49,7 +49,7 @@ jobs:
4949
5050
- name: Send Slack Notification
5151
if: steps.changesets.outputs.published == 'true'
52-
uses: slackapi/slack-github-action@fcfb566f8b0aab22203f066d80ca1d7e4b5d05b3 # v1.27.1
52+
uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
5353
with:
5454
payload: |
5555
{

.github/workflows/ts.test-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
uses: actions/checkout@v6
7777

7878
- name: Setup Deno
79-
uses: denoland/setup-deno@v2
79+
uses: denoland/setup-deno@v2.0.3
8080
with:
8181
deno-version: ${{ matrix.deno-version }}
8282

0 commit comments

Comments
 (0)