-
Notifications
You must be signed in to change notification settings - Fork 20
Comparing changes
Open a pull request
base repository: trunk-io/trunk-action
base: v1.1.17
head repository: trunk-io/trunk-action
compare: v1.1.18
- 7 commits
- 15 files changed
- 8 contributors
Commits on Sep 30, 2024
-
Update actions/cache@v3 to actions/cache@v4 (#231)
This will silence a warning about using Node 16, in favor of using Node 20.
Configuration menu - View commit details
-
Copy full SHA for e56f679 - Browse repository at this point
Copy the full SHA e56f679View commit details -
chore(deps): update actions/checkout action to v4 (#183)
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://togithub.com/actions/checkout) | action | major | `v3` -> `v4` | | [actions/checkout](https://togithub.com/actions/checkout) | action | major | `v3.6.0` -> `v4.1.1` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v4`](https://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v400) [Compare Source](https://togithub.com/actions/checkout/compare/v3...v4) - [Support fetching without the --progress option](https://togithub.com/actions/checkout/pull/1067) - [Update to node20](https://togithub.com/actions/checkout/pull/1436) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/trunk-io/trunk-action). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi43OS4xIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 4fd292e - Browse repository at this point
Copy the full SHA 4fd292eView commit details -
chore(deps): update actions/setup-node action to v4 (#209)
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-node](https://togithub.com/actions/setup-node) | action | major | `v3` -> `v4` | --- ### Release Notes <details> <summary>actions/setup-node (actions/setup-node)</summary> ### [`v4`](https://togithub.com/actions/setup-node/compare/v3...v4) [Compare Source](https://togithub.com/actions/setup-node/compare/v3...v4) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/trunk-io/trunk-action). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMS4yIiwidXBkYXRlZEluVmVyIjoiMzcuODEuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for b258fde - Browse repository at this point
Copy the full SHA b258fdeView commit details
Commits on Oct 1, 2024
-
chore: bump upload-artifact action dependency (#261)
actions/upload-artifact@v3 will be unusable in 2 months ([announcement link](https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/))
Configuration menu - View commit details
-
Copy full SHA for 0c109cf - Browse repository at this point
Copy the full SHA 0c109cfView commit details
Commits on Oct 7, 2024
-
Upgrade trunk to 1.22.6 (#262)
[](https://trunk.io) cli upgraded: 1.22.5 → 1.22.6 1 plugin was upgraded: - trunk-io/plugins v1.6.2 → v1.6.3 This PR was generated by the [Trunk Action]. For more info, see our [docs] or reach out on [Slack]. [Trunk Action]: https://github.com/trunk-io/trunk-action [docs]: https://docs.trunk.io [Slack]: https://slack.trunk.io/ Co-authored-by: TylerJang27 <42743566+TylerJang27@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 86c3f54 - Browse repository at this point
Copy the full SHA 86c3f54View commit details
Commits on Oct 10, 2024
-
feat(upgrade): add labels input parameter (#254)
This adds the input parameter `labels`. I think this is a needed parameter because some repos have different label schemas than "trunk". Example: I would like to add "area: dependencies" as label instead of "trunk".
Configuration menu - View commit details
-
Copy full SHA for b0ffb2e - Browse repository at this point
Copy the full SHA b0ffb2eView commit details -
Fixes bundle for action.yml (#249)
Most important of the fixes is the first one, which sets `TRUNK_LAUNCHER_QUIET=false`. The launcher currently completely suppresses all output (including all errors), unless `TRUNK_LAUNCHER_QUIET` env var is set to `false`. ```bash if [[ ${TRUNK_LAUNCHER_QUIET} != false ]]; then exec 3>&1 4>&2 &>/dev/null fi ``` This prevents each and every one from debugging failed runs. Redirecting file descriptors like that also disables all `set -vx` output, resulting in a complete blackout and painful debugging. This PR will always enable launcher output, which is what I prefer, however if you don't like that, it may be changed, so that it's set only if `RUNNER_DEBUG == 1`. Also, you can migrate to `actions/download-artifact@v4` and rewrite this step: https://github.com/trunk-io/trunk-action/blob/03cb46f406176a84f390fb565960606c2bd0b8b3/action.yaml#L355-L378 --------- Co-authored-by: Eli Schleifer <1265982+EliSchleifer@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 2eaee16 - Browse repository at this point
Copy the full SHA 2eaee16View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v1.1.17...v1.1.18