iT3E / tnwks-ops

A mono repository for my home infrastructure and Kubernetes cluster which adheres to Infrastructure as Code (IaC) and GitOps practices where possible
https://iT3E.github.io/tnwks-ops
MIT License
1 stars 0 forks source link

feat(github-action)!: Update lycheeverse/lychee-action action to v2.0.2 #871

Open renovate[bot] opened 1 week ago

renovate[bot] commented 1 week ago

This PR contains the following updates:

Package Type Update Change
lycheeverse/lychee-action action major v1.10.0 -> v2.0.2

[!WARNING] Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

lycheeverse/lychee-action (lycheeverse/lychee-action) ### [`v2.0.2`](https://redirect.github.com/lycheeverse/lychee-action/releases/tag/v2.0.2): Version 2.0.2 [Compare Source](https://redirect.github.com/lycheeverse/lychee-action/compare/v2.0.1...v2.0.2) ##### What's Changed - Fix a typos by [@​szepeviktor](https://redirect.github.com/szepeviktor) in [https://github.com/lycheeverse/lychee-action/pull/257](https://redirect.github.com/lycheeverse/lychee-action/pull/257) - Document and use correct permissions in the GitHub workflows by [@​dscho](https://redirect.github.com/dscho) in [https://github.com/lycheeverse/lychee-action/pull/258](https://redirect.github.com/lycheeverse/lychee-action/pull/258) - Add security policy by [@​mondeja](https://redirect.github.com/mondeja) in [https://github.com/lycheeverse/lychee-action/pull/259](https://redirect.github.com/lycheeverse/lychee-action/pull/259) ##### New Contributors - [@​szepeviktor](https://redirect.github.com/szepeviktor) made their first contribution in [https://github.com/lycheeverse/lychee-action/pull/257](https://redirect.github.com/lycheeverse/lychee-action/pull/257) - [@​mondeja](https://redirect.github.com/mondeja) made their first contribution in [https://github.com/lycheeverse/lychee-action/pull/259](https://redirect.github.com/lycheeverse/lychee-action/pull/259) **Full Changelog**: https://github.com/lycheeverse/lychee-action/compare/v2...v2.0.2 ### [`v2.0.1`](https://redirect.github.com/lycheeverse/lychee-action/releases/tag/v2.0.1): Version 2.0.1 [Compare Source](https://redirect.github.com/lycheeverse/lychee-action/compare/v2.0.0...v2.0.1) ##### What's Changed - Don't remove the lychee config file by [@​dmathieu](https://redirect.github.com/dmathieu) in [https://github.com/lycheeverse/lychee-action/pull/255](https://redirect.github.com/lycheeverse/lychee-action/pull/255) - Bump lycheeverse/lychee-action from 1 to 2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/lycheeverse/lychee-action/pull/252](https://redirect.github.com/lycheeverse/lychee-action/pull/252) - Fix variable name in docs by [@​kdeldycke](https://redirect.github.com/kdeldycke) in [https://github.com/lycheeverse/lychee-action/pull/253](https://redirect.github.com/lycheeverse/lychee-action/pull/253) ##### New Contributors - [@​dmathieu](https://redirect.github.com/dmathieu) made their first contribution in [https://github.com/lycheeverse/lychee-action/pull/255](https://redirect.github.com/lycheeverse/lychee-action/pull/255) **Full Changelog**: https://github.com/lycheeverse/lychee-action/compare/v2...v2.0.1 ### [`v2.0.0`](https://redirect.github.com/lycheeverse/lychee-action/releases/tag/v2.0.0): Version 2.0.0 [Compare Source](https://redirect.github.com/lycheeverse/lychee-action/compare/v1.10.0...v2.0.0) ##### Breaking Changes **Note:** This release improves the action's robustness by changing default behaviors. Changes are only required if you want to opt out of the new failure conditions. Most users won't need to modify their existing configurations. ##### Fail pipeline on error by default We've changed the default behavior: pipelines will now fail on broken links automatically. This addresses user feedback that not failing on broken links was unexpected (see [issue #​71](https://redirect.github.com/lycheeverse/lychee-action/issues/71)). **What you need to do:** - Update to version 2 of this action to apply this change. - Users of the `lychee-action@master` branch don't need to make any changes, as `fail: true` has been the default there for a while. - If you prefer the old behavior, explicitly set `fail` to `false` when updating: ```yaml - name: Link Checker id: lychee uses: lycheeverse/lychee-action@v2 with: fail: false # Don't fail action on broken links ``` ##### Fail pipeline if no links were found Similar to the above change, we now fail the pipeline if no links are found during a run. This helps warn users about potential configuration issues. **What you need to do:** - If you expect links to be found in your pipeline run, you don't need to do anything. - If you expect no links in your pipeline run, you can opt out like this: ```yaml - name: Link Checker id: lychee uses: lycheeverse/lychee-action@v2 with: failIfEmpty: false # Don't fail action if no links were found ``` For a more detailed description of the technical aspects behind these changes, please see the full changelog below. ##### What's Changed - feat: change to use the full version tag with v-\* prefix by [@​kemingy](https://redirect.github.com/kemingy) in [https://github.com/lycheeverse/lychee-action/pull/204](https://redirect.github.com/lycheeverse/lychee-action/pull/204) - Add `failIfEmpty` argument (fixes [#​84](https://redirect.github.com/lycheeverse/lychee-action/issues/84)) by [@​mre](https://redirect.github.com/mre) in [https://github.com/lycheeverse/lychee-action/pull/86](https://redirect.github.com/lycheeverse/lychee-action/pull/86) - Fail pipeline on error by default (fixes [#​71](https://redirect.github.com/lycheeverse/lychee-action/issues/71)) by [@​mre](https://redirect.github.com/mre) in [https://github.com/lycheeverse/lychee-action/pull/85](https://redirect.github.com/lycheeverse/lychee-action/pull/85) - Exit in case output is set in args and action input by [@​mre](https://redirect.github.com/mre) in [https://github.com/lycheeverse/lychee-action/pull/227](https://redirect.github.com/lycheeverse/lychee-action/pull/227) - v1 will automatically use latest version by [@​jacobdalamb](https://redirect.github.com/jacobdalamb) in [https://github.com/lycheeverse/lychee-action/pull/228](https://redirect.github.com/lycheeverse/lychee-action/pull/228) - Remove unneeded text by [@​jacobdalamb](https://redirect.github.com/jacobdalamb) in [https://github.com/lycheeverse/lychee-action/pull/229](https://redirect.github.com/lycheeverse/lychee-action/pull/229) - Clarify README.md defaults by [@​paddyroddy](https://redirect.github.com/paddyroddy) in [https://github.com/lycheeverse/lychee-action/pull/230](https://redirect.github.com/lycheeverse/lychee-action/pull/230) - Adjust for new asset naming scheme by [@​dscho](https://redirect.github.com/dscho) in [https://github.com/lycheeverse/lychee-action/pull/234](https://redirect.github.com/lycheeverse/lychee-action/pull/234) - Test various lychee versions by [@​mre](https://redirect.github.com/mre) in [https://github.com/lycheeverse/lychee-action/pull/235](https://redirect.github.com/lycheeverse/lychee-action/pull/235) - Better cleanup of old lychee assets by [@​mre](https://redirect.github.com/mre) in [https://github.com/lycheeverse/lychee-action/pull/237](https://redirect.github.com/lycheeverse/lychee-action/pull/237) - Bump peter-evans/create-issue-from-file from v4 to v5 by [@​AndreiCherniaev](https://redirect.github.com/AndreiCherniaev) in [https://github.com/lycheeverse/lychee-action/pull/241](https://redirect.github.com/lycheeverse/lychee-action/pull/241) - Remove dots from table by [@​AndreiCherniaev](https://redirect.github.com/AndreiCherniaev) in [https://github.com/lycheeverse/lychee-action/pull/242](https://redirect.github.com/lycheeverse/lychee-action/pull/242) - README: update actions/cache to v4 by [@​sebastiaanspeck](https://redirect.github.com/sebastiaanspeck) in [https://github.com/lycheeverse/lychee-action/pull/243](https://redirect.github.com/lycheeverse/lychee-action/pull/243) - Set exit_code correctly as output by [@​sebastiaanspeck](https://redirect.github.com/sebastiaanspeck) in [https://github.com/lycheeverse/lychee-action/pull/245](https://redirect.github.com/lycheeverse/lychee-action/pull/245) - action: fix failing CI by [@​sebastiaanspeck](https://redirect.github.com/sebastiaanspeck) in [https://github.com/lycheeverse/lychee-action/pull/246](https://redirect.github.com/lycheeverse/lychee-action/pull/246) - Split up steps in action by [@​mre](https://redirect.github.com/mre) in [https://github.com/lycheeverse/lychee-action/pull/248](https://redirect.github.com/lycheeverse/lychee-action/pull/248) - Bump version to 0.16.x, respect new tag names by [@​mre](https://redirect.github.com/mre) in [https://github.com/lycheeverse/lychee-action/pull/249](https://redirect.github.com/lycheeverse/lychee-action/pull/249) - Test latest lychee version tag by [@​mre](https://redirect.github.com/mre) in [https://github.com/lycheeverse/lychee-action/pull/236](https://redirect.github.com/lycheeverse/lychee-action/pull/236) ##### New Contributors - [@​kemingy](https://redirect.github.com/kemingy) made their first contribution in [https://github.com/lycheeverse/lychee-action/pull/204](https://redirect.github.com/lycheeverse/lychee-action/pull/204) - [@​paddyroddy](https://redirect.github.com/paddyroddy) made their first contribution in [https://github.com/lycheeverse/lychee-action/pull/230](https://redirect.github.com/lycheeverse/lychee-action/pull/230) - [@​dscho](https://redirect.github.com/dscho) made their first contribution in [https://github.com/lycheeverse/lychee-action/pull/234](https://redirect.github.com/lycheeverse/lychee-action/pull/234) - [@​AndreiCherniaev](https://redirect.github.com/AndreiCherniaev) made their first contribution in [https://github.com/lycheeverse/lychee-action/pull/241](https://redirect.github.com/lycheeverse/lychee-action/pull/241) - [@​sebastiaanspeck](https://redirect.github.com/sebastiaanspeck) made their first contribution in [https://github.com/lycheeverse/lychee-action/pull/243](https://redirect.github.com/lycheeverse/lychee-action/pull/243) **Full Changelog**: https://github.com/lycheeverse/lychee-action/compare/v1...v1.11.0

Configuration

📅 Schedule: Branch creation - "before 7am" (UTC), 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.



This PR was generated by Mend Renovate. View the repository job log.