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

ci(github): upgrade actions/github-script to 7.0.1 project-wide #3459

Merged
merged 1 commit into from
Aug 9, 2024
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ jobs:
id: print_env_git_index_file_count
run: |
echo "${{ env.GIT_INDEX_FILE_COUNT }}"
- uses: actions/github-script@v6.4.1
- uses: actions/github-script@v7.0.1
id: set-result-git_index_file_count
with:
script: |
Expand All @@ -251,7 +251,7 @@ jobs:

- name: Check Lint Side-effects
if: ${{ steps.set-result-git_index_file_count.outputs.result != 0 }}
uses: actions/github-script@v6.4.1
uses: actions/github-script@v7.0.1
with:
script: |
const failMsg = "yarn lint script produced version control " +
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:
run: |
echo "${{ env.GIT_INDEX_FILE_COUNT }}"

- uses: actions/github-script@v6.4.1
- uses: actions/github-script@v7.0.1
id: set-result-git_index_file_count
with:
script: |
Expand All @@ -321,7 +321,7 @@ jobs:

- name: Check CodeGen Side-effects
if: ${{ steps.set-result-git_index_file_count.outputs.result != 0 }}
uses: actions/github-script@v6.4.1
uses: actions/github-script@v7.0.1
with:
script: |
const failMsg = "yarn codegen script produced version control " +
Expand Down
Loading