Skip to content

Commit

Permalink
Update blog posts for 2024-10-08T17:03:53Z
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Oct 8, 2024
1 parent cd1b69f commit 413a95d
Show file tree
Hide file tree
Showing 5 changed files with 196 additions and 0 deletions.
29 changes: 29 additions & 0 deletions content/posts/2024/10/08-17-appleboy-discord-action.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: Discord Message Notify
date: 2024-10-08 17:03:51 +00:00
tags:
- appleboy
- GitHub Actions
draft: false
repo: appleboy/discord-action
marketplace: https://github.com/marketplace/actions/discord-message-notify
version: v1.1.0
dependentsNumber: "669"
---


Version updated for **appleboy/discord-action** to version **v1.1.0**.
- This action is used across all versions by **669** repositories.

Go to the [GitHub Marketplace](https://github.com/marketplace/actions/discord-message-notify) to find the latest changes.

## Release notes

## Changelog
### Build process updates
* e2b7756d70049c65411002d46d818d2df85c9d52: ci: automate release process with GitHub Actions and GoReleaser (@appleboy)
* 65ebc423aafb4ac20894ec0cb1042fb2bdab5e0d: build: enhance API performance and update dependencies (@appleboy)
### Documentation updates
* d172c11b9f66e85322910c5c7f67c24750782cc3: docs: update README.md (@appleboy)


30 changes: 30 additions & 0 deletions content/posts/2024/10/08-17-cloudflare-wrangler-action.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
title: Deploy to Cloudflare Workers with Wrangler
date: 2024-10-08 17:03:48 +00:00
tags:
- cloudflare
- GitHub Actions
draft: false
repo: cloudflare/wrangler-action
marketplace: https://github.com/marketplace/actions/deploy-to-cloudflare-workers-with-wrangler
version: v3.9.0
dependentsNumber: "28,081"
---


Version updated for **cloudflare/wrangler-action** to version **v3.9.0**.
- This publisher is shown as 'verified' by GitHub.
- This action is used across all versions by **28,081** repositories.

Go to the [GitHub Marketplace](https://github.com/marketplace/actions/deploy-to-cloudflare-workers-with-wrangler) to find the latest changes.

## Release notes

### Minor Changes

- [#298](https://github.com/cloudflare/wrangler-action/pull/298) [`134b5c2a3252d66b8c4d1cddd0b9baaeed6a4daa`](https://github.com/cloudflare/wrangler-action/commit/134b5c2a3252d66b8c4d1cddd0b9baaeed6a4daa) Thanks [@Maximo-Guk](https://github.com/Maximo-Guk)! - Update wrangler version from 3.13.2 to 3.78.10

### Patch Changes

- [#278](https://github.com/cloudflare/wrangler-action/pull/278) [`47d51f25c113ee9205110728599b43ed6a1e273b`](https://github.com/cloudflare/wrangler-action/commit/47d51f25c113ee9205110728599b43ed6a1e273b) Thanks [@acusti](https://github.com/acusti)! - fix: Detect existing wrangler install even when wrangler version output is multiline

88 changes: 88 additions & 0 deletions content/posts/2024/10/08-17-lycheeverse-lychee-action.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
---
title: Lychee Broken Link Checker
date: 2024-10-08 17:03:45 +00:00
tags:
- lycheeverse
- GitHub Actions
draft: false
repo: lycheeverse/lychee-action
marketplace: https://github.com/marketplace/actions/lychee-broken-link-checker
version: v2.0.0
dependentsNumber: "18,746"
---


Version updated for **lycheeverse/lychee-action** to version **v2.0.0**.
- This action is used across all versions by **18,746** repositories.

Go to the [GitHub Marketplace](https://github.com/marketplace/actions/lychee-broken-link-checker) to find the latest changes.

## Release notes

## 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://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 in https://github.com/lycheeverse/lychee-action/pull/204
* Add `failIfEmpty` argument (fixes #84) by @mre in https://github.com/lycheeverse/lychee-action/pull/86
* Fail pipeline on error by default (fixes #71) by @mre in https://github.com/lycheeverse/lychee-action/pull/85
* Exit in case output is set in args and action input by @mre in https://github.com/lycheeverse/lychee-action/pull/227
* v1 will automatically use latest version by @jacobdalamb in https://github.com/lycheeverse/lychee-action/pull/228
* Remove unneeded text by @jacobdalamb in https://github.com/lycheeverse/lychee-action/pull/229
* Clarify README.md defaults by @paddyroddy in https://github.com/lycheeverse/lychee-action/pull/230
* Adjust for new asset naming scheme by @dscho in https://github.com/lycheeverse/lychee-action/pull/234
* Test various lychee versions by @mre in https://github.com/lycheeverse/lychee-action/pull/235
* Better cleanup of old lychee assets by @mre in https://github.com/lycheeverse/lychee-action/pull/237
* Bump peter-evans/create-issue-from-file from v4 to v5 by @AndreiCherniaev in https://github.com/lycheeverse/lychee-action/pull/241
* Remove dots from table by @AndreiCherniaev in https://github.com/lycheeverse/lychee-action/pull/242
* README: update actions/cache to v4 by @sebastiaanspeck in https://github.com/lycheeverse/lychee-action/pull/243
* Set exit_code correctly as output by @sebastiaanspeck in https://github.com/lycheeverse/lychee-action/pull/245
* action: fix failing CI by @sebastiaanspeck in https://github.com/lycheeverse/lychee-action/pull/246
* Split up steps in action by @mre in https://github.com/lycheeverse/lychee-action/pull/248
* Bump version to 0.16.x, respect new tag names by @mre in https://github.com/lycheeverse/lychee-action/pull/249
* Test latest lychee version tag by @mre in https://github.com/lycheeverse/lychee-action/pull/236

## New Contributors
* @kemingy made their first contribution in https://github.com/lycheeverse/lychee-action/pull/204
* @paddyroddy made their first contribution in https://github.com/lycheeverse/lychee-action/pull/230
* @dscho made their first contribution in https://github.com/lycheeverse/lychee-action/pull/234
* @AndreiCherniaev made their first contribution in https://github.com/lycheeverse/lychee-action/pull/241
* @sebastiaanspeck made their first contribution in https://github.com/lycheeverse/lychee-action/pull/243

**Full Changelog**: https://github.com/lycheeverse/lychee-action/compare/v1...v1.11.0
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
title: Delta TypeScript Graph
date: 2024-10-08 17:03:42 +00:00
tags:
- ysk8hori
- GitHub Actions
draft: false
repo: ysk8hori/delta-typescript-graph-action
marketplace: https://github.com/marketplace/actions/delta-typescript-graph
version: v1.0.5
dependentsNumber: "5"
---


Version updated for **ysk8hori/delta-typescript-graph-action** to version **v1.0.5**.
- This action is used across all versions by **5** repositories.

Go to the [GitHub Marketplace](https://github.com/marketplace/actions/delta-typescript-graph) to find the latest changes.

## Release notes

## What's Changed

octkit によるリクエストが、想定外のエラー(`[400, 401, 403, 404, 422, 451]` 以外)であった場合にリトライを行うよう変更しました。

We've updated the Octokit requests to retry in cases of unexpected errors (those other than `[400, 401, 403, 404, 422, 451]`).

### Full changelog
* Update renovate.json by @ysk8hori in https://github.com/ysk8hori/delta-typescript-graph-action/pull/98
* chore(deps): update actions/checkout digest to 692973e by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/80
* chore(deps): update dependency @types/jest to v29.5.13 by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/97
* fix(deps): update dependency remeda to v2.14.0 by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/95
* chore(deps): update dependency typescript to v5.6.2 by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/96
* chore(deps): update dependency @vercel/ncc to v0.38.2 by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/99
* chore(deps): update dependency @total-typescript/ts-reset to v0.6.1 by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/92
* chore(deps): update dependency @types/node to v20.16.10 by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/94
* chore(deps): update dependency eslint to v9 by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/82
* chore(deps): update dependency ts-jest to v29.2.5 by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/91
* chore(deps): update typescript-eslint monorepo to v8.8.0 by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/93
* fix(deps): update dependency @actions/core to v1.11.1 by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/104
* chore(deps): update actions/checkout digest to eef6144 by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/105
* chore(deps): update typescript-eslint monorepo to v8.8.1 by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/106
* chore(deps): update dependency @types/node to v20.16.11 by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/108
* octokit によるリクエストのうち想定外のエラーをリトライする by @ysk8hori in https://github.com/ysk8hori/delta-typescript-graph-action/pull/103
* fix(deps): update dependency remeda to v2.15.0 by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/107
* octkit による問い合わせのリトライやエラー周りの改善のビルド by @ysk8hori in https://github.com/ysk8hori/delta-typescript-graph-action/pull/110


**Full Changelog**: https://github.com/ysk8hori/delta-typescript-graph-action/compare/v1.0.4...v1.1.0

0 comments on commit 413a95d

Please sign in to comment.