Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/claude-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
- name: Check if actor is an org member
id: check
uses: actions/github-script@v7
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
with:
script: |
const org = 'seqeralabs';
Expand Down Expand Up @@ -58,12 +58,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4 # TODO: why not v6?
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 # TODO: why not v6?
with:
fetch-depth: 1

- name: Run Claude Code Action
uses: anthropics/claude-code-action@v1
uses: anthropics/claude-code-action@9db782c3a17ef2bfc274cd17411bc3e0a5ba1345 # v1
timeout-minutes: 60
with:
anthropic_api_key: ${{ secrets.ENG_ANTHROPIC_API_KEY }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/security-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: Check if actor is an org member
id: check
uses: actions/github-script@v7
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
with:
script: |
const org = 'seqeralabs';
Expand Down Expand Up @@ -44,13 +44,13 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4 # TODO: why not v6?
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 # TODO: why not v6?
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
fetch-depth: 2

- name: Run Claude Code Security Action
uses: anthropics/claude-code-security-review@main
uses: anthropics/claude-code-security-review@0c6a49f1fa56a1d472575da86a94dbc1edb78eda # main
timeout-minutes: 60
with:
comment-pr: true
Expand Down
Loading