Skip to content

Commit

Permalink
chore(deps): 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] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 13, 2023
1 parent db706ed commit f949b2a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/comment-on-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install dependencies (pnpm) # needed since we need to parse markdown, so we also use got instead
run: pnpm i
- name: Generate feedback
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issue-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

- name: Fetch affected routes
id: fetchRoute
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
EVENT: ${{ toJson(github.event) }}
with:
Expand All @@ -88,7 +88,7 @@ jobs:

- name: Generate feedback
if: env.TEST_CONTINUE
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
TEST_BASEURL: http://localhost:1200
TEST_ROUTES: ${{ steps.fetchRoute.outputs.result }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-deploy-route-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Fetch affected routes
id: fetchRoute
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
PULL_REQUEST: ${{ steps.pr-data.outputs.data }}
with:
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:

- name: Generate feedback
if: (env.TEST_CONTINUE)
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
TEST_BASEURL: http://localhost:1200
TEST_ROUTES: ${{ steps.fetchRoute.outputs.result }}
Expand Down

0 comments on commit f949b2a

Please sign in to comment.