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
2 changes: 1 addition & 1 deletion actions/crib-deploy-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ runs:
nix develop -c /bin/bash -c "devspace use namespace ${DEVSPACE_NAMESPACE} && devspace run ${{ inputs.command }} ${{ inputs.command-args }}"

- name: Render notification template
uses: actions/github-script@v7
uses: actions/github-script@v8
id: render-slack-template
if:
failure() && inputs.crib-alert-slack-webhook != '' && inputs.send-alerts
Expand Down
2 changes: 1 addition & 1 deletion actions/do-not-merge/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
using: composite
steps:
- name: Fail if label present
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
FAIL_LABELS: ${{ inputs.fail-labels }}
with:
Expand Down
2 changes: 1 addition & 1 deletion actions/llm-action-error-reporter/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ runs:

- name: post pr comment
if: ${{ env.SKIP_ACTION == 'false' }}
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
GH_TOKEN: ${{ inputs.gh-token }}
PR_NUMBER: ${{ steps.get_pr_number.outputs.pr_number }}
Expand Down
2 changes: 1 addition & 1 deletion actions/md-confluence-sync/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ runs:

- name: Get default branch
id: get_default_branch
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const repo = await github.rest.repos.get({
Expand Down
2 changes: 1 addition & 1 deletion actions/oci-image-bump/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ runs:
# an environment.
- name: PR Closer
if: ${{ inputs.pr-close-enabled == 'true' }}
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
PR_URL: ${{ steps.create-pr.outputs.pull-request-url }}
PR_NUM: ${{ steps.create-pr.outputs.pull-request-number }}
Expand Down
12 changes: 6 additions & 6 deletions actions/pr-quality-check/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ runs:
if:
env.SHOULD_RUN == 'true' && steps.run-py.outputs.has-fix-candidates ==
'true'
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
FIX_CANDIDATES_PATH: ${{ steps.run-py.outputs.fix-candidates-path }}
with:
Expand Down Expand Up @@ -191,7 +191,7 @@ runs:
if:
env.SHOULD_RUN == 'true' && steps.run-py.outputs.has-fix-candidates ==
'true'
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
FP: ${{ steps.run-py.outputs.fix-candidates-fingerprint }}
with:
Expand Down Expand Up @@ -230,7 +230,7 @@ runs:
env.SHOULD_RUN == 'true' && steps.run-py.outputs.has-fix-candidates ==
'true' && (inputs.claude-code-auto-fix-enabled != 'true' ||
steps.check-claude.outputs.should-run-claude != 'true')
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
DETAILS: ${{ steps.build-details.outputs.details }}
MISSING: ${{ steps.check-claude.outputs.missing }}
Expand All @@ -257,7 +257,7 @@ runs:
steps.check-claude.outputs.should-run-claude == 'true' &&
steps.check-fingerprint.outputs.fingerprint-changed == 'true' &&
github.event.pull_request.head.repo.full_name == github.repository
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
DETAILS: ${{ steps.build-details.outputs.details }}
TOTAL_DETECTED: ${{ steps.run-py.outputs.total-issues-detected }}
Expand Down Expand Up @@ -460,7 +460,7 @@ runs:
steps.check-claude.outputs.should-run-claude == 'true' &&
steps.check-fingerprint.outputs.fingerprint-changed == 'true' &&
github.event.pull_request.head.repo.full_name == github.repository
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
PR_NUMBER_CREATED:
${{ steps.create-autofix-pr.outputs.pull-request-number }}
Expand Down Expand Up @@ -490,7 +490,7 @@ runs:
steps.check-claude.outputs.should-run-claude == 'true' &&
steps.check-fingerprint.outputs.fingerprint-changed == 'true' &&
github.event.pull_request.head.repo.full_name == github.repository
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
COMMENT_ID: ${{ steps.post-comment.outputs.comment-id }}
PR_URL: ${{ steps.create-autofix-pr.outputs.pull-request-url }}
Expand Down
2 changes: 1 addition & 1 deletion actions/wait-for-workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ runs:
steps:
- name: wait-for-workflows
id: wfw
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
MAX_TIMEOUT: ${{ inputs.max-timeout }}
POLLING_INTERVAL: ${{ inputs.polling-interval }}
Expand Down
Loading