|
| 1 | +<a id="v1.7.12"></a> |
| 2 | +# [v1.7.12](https://github.com/rhysd/actionlint/releases/tag/v1.7.12) - 2026-03-30 |
| 3 | + |
| 4 | +- Support the [`timezone` configuration in `on.schedule`](https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#onschedule) with checks for IANA timezone string. See the [documentation](https://github.com/rhysd/actionlint/blob/main/docs/checks.md#check-cron-syntax-and-timezone) for more details. Note that actionlint starts to embed the timezone database in the executables from this version so the binary sizes slightly increase. ([#641](https://github.com/rhysd/actionlint/issues/641), thanks [@martincostello](https://github.com/martincostello)) |
| 5 | + ```yaml |
| 6 | + on: |
| 7 | + schedule: |
| 8 | + # ERROR: The timezone is not a valid IANA timezone string |
| 9 | + - cron: '*/5 * * * *' |
| 10 | + timezone: 'Asia/Somewhere' |
| 11 | + ``` |
| 12 | +- Support the [`jobs.<job_name>.environment.deployment` configuration](https://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments). ([#639](https://github.com/rhysd/actionlint/issues/639), thanks [@springmeyer](https://github.com/springmeyer)) |
| 13 | +- Support the [`macos-26-intel` runner label](https://github.blog/changelog/2026-02-26-macos-26-is-now-generally-available-for-github-hosted-runners/). ([#629](https://github.com/rhysd/actionlint/issues/629), thanks [@hugovk](https://github.com/hugovk)) |
| 14 | +- Fix the [table of webhook activity types](https://github.com/rhysd/actionlint/blob/main/all_webhooks.go) are outdated by rebuilding the [script to scrape the table](https://github.com/rhysd/actionlint/tree/main/scripts/generate-webhook-events) from scratch. |
| 15 | +- Support Go 1.26 and drop the support for Go 1.24. Now supported versions are 1.25 and 1.26. |
| 16 | +- Tests are run on arm64 Windows in CI. |
| 17 | +- Update the popular actions data set to the latest. |
| 18 | + |
| 19 | +[Changes][v1.7.12] |
| 20 | + |
| 21 | + |
1 | 22 | <a id="v1.7.11"></a> |
2 | 23 | # [v1.7.11](https://github.com/rhysd/actionlint/releases/tag/v1.7.11) - 2026-02-14 |
3 | 24 |
|
|
36 | 57 | - Signer repo:.... rhysd/actionlint |
37 | 58 | - Signer workflow: .github/workflows/release.yaml@refs/tags/v1.7.11 |
38 | 59 | ``` |
39 | | -- Report path filters with `./` because they never match anything. ([#521](https://github.com/rhysd/actionlint/issues/521)) |
| 60 | +- Report path filters with `./` as error because they never match anything. ([#521](https://github.com/rhysd/actionlint/issues/521)) |
40 | 61 | ```yaml |
41 | 62 | on: |
42 | 63 | push: |
|
46 | 67 | ``` |
47 | 68 | - Fix comparing matrix items when an item is a super set of another item. ([#523](https://github.com/rhysd/actionlint/issues/523), [#613](https://github.com/rhysd/actionlint/issues/613), thanks [@michaelgruenewald](https://github.com/michaelgruenewald)) |
48 | 69 | - Fix stack overflow crash by a recursive anchor in matrix items. ([#610](https://github.com/rhysd/actionlint/issues/610)) |
49 | | -- Fix a unassigned variable false positive from shellcheck by disabling SC2153 rule. ([#573](https://github.com/rhysd/actionlint/issues/573)) |
| 70 | +- Fix an unassigned variable false positive from shellcheck by disabling SC2153 rule. ([#573](https://github.com/rhysd/actionlint/issues/573)) |
50 | 71 | - Reduce the number of memory allocations on resolving anchors. |
51 | 72 | - Update the popular actions data set to the latest. |
52 | 73 | - Update Go dependencies to the latest. |
@@ -2067,6 +2088,7 @@ See documentation for more details: |
2067 | 2088 | [Changes][v1.0.0] |
2068 | 2089 |
|
2069 | 2090 |
|
| 2091 | +[v1.7.12]: https://github.com/rhysd/actionlint/compare/v1.7.11...v1.7.12 |
2070 | 2092 | [v1.7.11]: https://github.com/rhysd/actionlint/compare/v1.7.10...v1.7.11 |
2071 | 2093 | [v1.7.10]: https://github.com/rhysd/actionlint/compare/v1.7.9...v1.7.10 |
2072 | 2094 | [v1.7.9]: https://github.com/rhysd/actionlint/compare/v1.7.8...v1.7.9 |
|
0 commit comments