Skip to content

Commit

Permalink
Fix composite actions steps
Browse files Browse the repository at this point in the history
If a step in a composite action has the key `uses` it shouldn't have the `shell` key,
otherwise it errors. Steps that don't have the `uses` key, must have the
`shell` key.
  • Loading branch information
fabianrbz committed Jul 2, 2024
1 parent 912aadb commit c989cc0
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/reusable-steps/install-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ runs:
using: composite
steps:
- name: Set up Ruby
shell: bash
uses: ruby/setup-ruby@v1
with:
ruby-version: .ruby-version
Expand Down
2 changes: 0 additions & 2 deletions .github/reusable-steps/run-kong-ee/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@ runs:
using: composite
steps:
- name: Download quickstart script
shell: bash
uses: ./.github/reusable-steps/download-quickstart-script
- name: Download Kong License
shell: bash
uses: Kong/kong-license@master
id: getLicense
with:
Expand Down
1 change: 0 additions & 1 deletion .github/reusable-steps/run-kong-oss/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ runs:
using: composite
steps:
- name: Download quickstart script
shell: bash
uses: ./.github/reusable-steps/download-quickstart-script
- name: Run Kong
shell: bash
Expand Down

0 comments on commit c989cc0

Please sign in to comment.