Skip to content

Commit

Permalink
build(deps): bump actions/github-script from 3 to 7 (apache#26953)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Feb 1, 2024
1 parent d33fc05 commit 38b71e1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_db_migration_confict.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
uses: actions/checkout@v3
- name: Check and notify
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
github-token: ${{ github.token }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ephemeral-env-pr-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Comment (success)
if: steps.describe-services.outputs.active == 'true'
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
github-token: ${{github.token}}
script: |
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ephemeral-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
echo "Comment on PR #${{ github.event.issue.number }} by ${{ github.event.issue.user.login }}, ${{ github.event.comment.author_association }}"
- name: Eval comment body for /testenv slash command
uses: actions/github-script@v3
uses: actions/github-script@v7
id: eval-body
with:
result-encoding: string
Expand All @@ -51,7 +51,7 @@ jobs:
return result === null ? 'noop' : result[1]
- name: Eval comment body for feature flags
uses: actions/github-script@v3
uses: actions/github-script@v7
id: eval-feature-flags
with:
script: |
Expand All @@ -71,7 +71,7 @@ jobs:
steps.eval-body.outputs.result != 'noop' &&
github.event.comment.author_association != 'MEMBER' &&
github.event.comment.author_association != 'OWNER'
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
github-token: ${{github.token}}
script: |
Expand All @@ -90,7 +90,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Get Info from comment
uses: actions/github-script@v3
uses: actions/github-script@v7
id: get-pr-info
with:
script: |
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
- name: Fail on missing container image
if: steps.check-image.outcome == 'failure'
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
github-token: ${{github.token}}
script: |
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
- name: Comment (success)
if: ${{ success() }}
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
github-token: ${{github.token}}
script: |
Expand All @@ -275,7 +275,7 @@ jobs:
- name: Comment (failure)
if: ${{ failure() }}
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
github-token: ${{github.token}}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/no-hold-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check for 'hold' label
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
Expand Down

0 comments on commit 38b71e1

Please sign in to comment.