Skip to content

Commit 992fc34

Browse files
chore(deps): update actions/github-script action to v7 (#188)
[![Mend Renovate logo banner](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/github-script](https://togithub.com/actions/github-script) | action | major | `v6.4.1` -> `v7.0.1` | --- ### Release Notes <details> <summary>actions/github-script (actions/github-script)</summary> ### [`v7.0.1`](https://togithub.com/actions/github-script/releases/tag/v7.0.1) [Compare Source](https://togithub.com/actions/github-script/compare/v7.0.0...v7.0.1) ##### What's Changed - Avoid setting `baseUrl` to undefined when input is not provided by [@&#8203;joshmgross](https://togithub.com/joshmgross) in [https://github.com/actions/github-script/pull/439](https://togithub.com/actions/github-script/pull/439) **Full Changelog**: actions/github-script@v7.0.0...v7.0.1 ### [`v7.0.0`](https://togithub.com/actions/github-script/releases/tag/v7.0.0) [Compare Source](https://togithub.com/actions/github-script/compare/v6.4.1...v7.0.0) #### What's Changed - Add base-url option by [@&#8203;robandpdx](https://togithub.com/robandpdx) in [https://github.com/actions/github-script/pull/429](https://togithub.com/actions/github-script/pull/429) - Expose async-function argument type by [@&#8203;viktorlott](https://togithub.com/viktorlott) in [https://github.com/actions/github-script/pull/402](https://togithub.com/actions/github-script/pull/402), see for details https://github.com/actions/github-script#use-scripts-with-jsdoc-support - Update dependencies and use Node 20 by [@&#8203;joshmgross](https://togithub.com/joshmgross) in [https://github.com/actions/github-script/pull/425](https://togithub.com/actions/github-script/pull/425) #### New Contributors - [@&#8203;navarroaxel](https://togithub.com/navarroaxel) made their first contribution in [https://github.com/actions/github-script/pull/285](https://togithub.com/actions/github-script/pull/285) - [@&#8203;robandpdx](https://togithub.com/robandpdx) made their first contribution in [https://github.com/actions/github-script/pull/429](https://togithub.com/actions/github-script/pull/429) - [@&#8203;viktorlott](https://togithub.com/viktorlott) made their first contribution in [https://github.com/actions/github-script/pull/402](https://togithub.com/actions/github-script/pull/402) **Full Changelog**: actions/github-script@v6.4.1...v7.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Hapag-Lloyd/terraform-aws-bastion-host-ssm). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent d6d7108 commit 992fc34

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/new-pr-opened.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
permissions:
1616
pull-requests: write
1717
steps:
18-
- uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
18+
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
1919
with:
2020
script: |
2121
// adds a comment to the PR (there is the issue API only which works work PRs too)

.github/workflows/slash_ops_commands.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
2525
maintainer=${maintainers[ $RANDOM % ${#maintainers[@]} ]}
2626
echo "maintainer=$maintainer" >> "$GITHUB_OUTPUT"
27-
- uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
27+
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
2828
with:
2929
script: |
3030
// adds a comment to the PR (there is the issue API, which works work PRs too)
@@ -69,7 +69,7 @@ jobs:
6969
commit_message: "chore: format Terraform code"
7070

7171
- name: Failure notice
72-
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
72+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
7373
if: ${{ failure() }}
7474
with:
7575
script: |

.github/workflows/slash_ops_comment_dispatch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
slash-command-dispatch:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
13+
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
1414
id: vars
1515
with:
1616
script: |

0 commit comments

Comments
 (0)