Skip to content

Commit

Permalink
build(deps): bump actions/github-script from 3 to 7
Browse files Browse the repository at this point in the history
Bumps [actions/github-script](https://github.com/actions/github-script) from 3 to 7.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v3...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] committed Jan 25, 2024
1 parent 939000f commit 05523db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Expand Up @@ -92,21 +92,21 @@ runs:

- name: "Check if User or Organization is set"
if: inputs.organization == '' && inputs.user == ''
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
script: |
core.setFailed('either user or organization is not specified.')
- name: "Check if User and Organization are set"
if: inputs.organization != '' && inputs.user != ''
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
script: |
core.setFailed('user and organization field is set. Only one is supported.')
- name: "Check if operation_mode is set and custom_field_values is not null"
if: inputs.operation_mode == 'custom_field' && inputs.custom_field_values == ''
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
script: |
core.setFailed('operation mode is set to custom_field but custom_field_values is not set.')
Expand Down

0 comments on commit 05523db

Please sign in to comment.