Skip to content

Commit

Permalink
Bump actions/github-script from 5 to 7
Browse files Browse the repository at this point in the history
Bumps [actions/github-script](https://github.com/actions/github-script) from 5 to 7.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v5...v7)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and Uxio0 committed Mar 25, 2024
1 parent 432c9d4 commit 6e50cc7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/create_pr_with_new_address.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- name: Check if comment is "/execute" by repo owner
id: check-comment
uses: actions/github-script@v5
uses: actions/github-script@v7
with:
github-token: ${{ secrets.TOKEN_GITHUB_READ_ORG_TEAMS }} # Important: This secret with read permissions on the teams information must be configured in repository settings -> secrets -> actions
script: |
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Add comment to issue with starting message
if: steps.check-comment.outputs.result == 'true'
uses: actions/github-script@v5
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Add comment to issue with command failure
if: steps.check-comment.outputs.result == 'false'
uses: actions/github-script@v5
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand All @@ -59,7 +59,7 @@ jobs:
- name: Get issue inputs
if: steps.check-comment.outputs.result == 'true'
id: get-issue-inputs
uses: actions/github-script@v5
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
- name: Add comment to issue
if: steps.check-comment.outputs.result == 'true'
uses: actions/github-script@v5
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate_new_address_issue_input_data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- name: Get issue inputs
id: get-issue-inputs
uses: actions/github-script@v5
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
python .github/scripts/github_adding_addresses/validate_new_address_issue_input_data.py
- name: Add comment to issue
uses: actions/github-script@v5
uses: actions/github-script@v7
env:
COMMENT_OUTPUT: ${{ steps.validate-input-data.outputs.comment_message }}
with:
Expand Down

0 comments on commit 6e50cc7

Please sign in to comment.