Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and jamesnetherton committed Nov 30, 2023
1 parent 377ad61 commit 871212c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/assign-issue-milestone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Assign Closed Issues To Latest Milestone
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const issueNumberFromCommitCommentRegex = new RegExp(`.*(?:fix(?:e[sd])?|(?:(?:resolve|close)[sd]?)):?\\s(?:https?:\\/\\/github\\.com\\/${context.repo.owner}\\/${context.repo.repo}\\/issues\\/|#)(\\d+)`, 'igm');
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/assign-wontfix-issue-milestone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Assign Closed Issue To Wont Fix Milestone
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
await github.rest.issues.update({
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-issue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: |
npm install js-yaml
- name: Label Issue
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const fs = require('fs');
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/synchronize-dependabot-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
steps:
- name: Download dependabot pull request changes
id: download-pr-changes
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
result-encoding: string
script: |
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
pull-requests: write
steps:
- name: Trigger dependabot pull request workflow
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
await github.rest.actions.reRunWorkflow({
Expand Down

0 comments on commit 871212c

Please sign in to comment.