Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump actions/github-script from 6 to 7 #92

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading