Skip to content

Commit fcf6e20

Browse files
committed
update changelog for v1.7.12 changes
1 parent 3795ba2 commit fcf6e20

1 file changed

Lines changed: 24 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
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+
122
<a id="v1.7.11"></a>
223
# [v1.7.11](https://github.com/rhysd/actionlint/releases/tag/v1.7.11) - 2026-02-14
324

@@ -36,7 +57,7 @@
3657
- Signer repo:.... rhysd/actionlint
3758
- Signer workflow: .github/workflows/release.yaml@refs/tags/v1.7.11
3859
```
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))
4061
```yaml
4162
on:
4263
push:
@@ -46,7 +67,7 @@
4667
```
4768
- 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))
4869
- 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))
5071
- Reduce the number of memory allocations on resolving anchors.
5172
- Update the popular actions data set to the latest.
5273
- Update Go dependencies to the latest.
@@ -2067,6 +2088,7 @@ See documentation for more details:
20672088
[Changes][v1.0.0]
20682089

20692090

2091+
[v1.7.12]: https://github.com/rhysd/actionlint/compare/v1.7.11...v1.7.12
20702092
[v1.7.11]: https://github.com/rhysd/actionlint/compare/v1.7.10...v1.7.11
20712093
[v1.7.10]: https://github.com/rhysd/actionlint/compare/v1.7.9...v1.7.10
20722094
[v1.7.9]: https://github.com/rhysd/actionlint/compare/v1.7.8...v1.7.9

0 commit comments

Comments
 (0)