Skip to content

Commit 393031a

Browse files
committed
bump up version to v1.7.11
1 parent 63589e8 commit 393031a

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

.pre-commit-hooks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
language: docker_image
1414
types: ["yaml"]
1515
files: ^\.github/workflows/
16-
entry: docker.io/rhysd/actionlint:1.7.10
16+
entry: docker.io/rhysd/actionlint:1.7.11
1717
- id: actionlint-system
1818
name: Lint GitHub Actions workflow files
1919
description: Runs system-installed actionlint to lint GitHub Actions workflow files

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,10 @@ actionlint is distributed under [the MIT license](./LICENSE.txt).
139139
[filter-pattern-doc]: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
140140
[script-injection-doc]: https://docs.github.com/en/actions/reference/security/secure-use#good-practices-for-mitigating-script-injection-attacks
141141
[releases]: https://github.com/rhysd/actionlint/releases
142-
[checks]: https://github.com/rhysd/actionlint/blob/v1.7.10/docs/checks.md
143-
[install]: https://github.com/rhysd/actionlint/blob/v1.7.10/docs/install.md
144-
[usage]: https://github.com/rhysd/actionlint/blob/v1.7.10/docs/usage.md
145-
[config]: https://github.com/rhysd/actionlint/blob/v1.7.10/docs/config.md
146-
[api]: https://github.com/rhysd/actionlint/blob/v1.7.10/docs/api.md
147-
[refs]: https://github.com/rhysd/actionlint/blob/v1.7.10/docs/reference.md
142+
[checks]: https://github.com/rhysd/actionlint/blob/v1.7.11/docs/checks.md
143+
[install]: https://github.com/rhysd/actionlint/blob/v1.7.11/docs/install.md
144+
[usage]: https://github.com/rhysd/actionlint/blob/v1.7.11/docs/usage.md
145+
[config]: https://github.com/rhysd/actionlint/blob/v1.7.11/docs/config.md
146+
[api]: https://github.com/rhysd/actionlint/blob/v1.7.11/docs/api.md
147+
[refs]: https://github.com/rhysd/actionlint/blob/v1.7.11/docs/reference.md
148148
[issue-form]: https://github.com/rhysd/actionlint/issues/new

docs/usage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ and pyflakes).
272272
Available tags are:
273273

274274
- `actionlint:latest`: Latest stable version of actionlint. This image is recommended.
275-
- `actionlint:{version}`: Specific version of actionlint. (e.g. `actionlint:1.7.10`)
275+
- `actionlint:{version}`: Specific version of actionlint. (e.g. `actionlint:1.7.11`)
276276

277277
Just run the image with `docker run`:
278278

@@ -366,7 +366,7 @@ Add this to your `.pre-commit-config.yaml` in your repository:
366366
---
367367
repos:
368368
- repo: https://github.com/rhysd/actionlint
369-
rev: v1.7.10
369+
rev: v1.7.11
370370
hooks:
371371
- id: actionlint
372372
```
@@ -425,15 +425,15 @@ trunk check enable actionlint
425425
or if you'd like a specific version:
426426

427427
```bash
428-
trunk check enable actionlint@1.7.10
428+
trunk check enable actionlint@1.7.11
429429
```
430430

431431
or modify `.trunk/trunk.yaml` in your repository to contain:
432432

433433
```yaml
434434
lint:
435435
enabled:
436-
- actionlint@1.7.10
436+
- actionlint@1.7.11
437437
```
438438

439439
Then just run:

man/actionlint.1.ronn

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,39 +102,39 @@ Documents for more details are available online.
102102

103103
### Checks
104104

105-
https://github.com/rhysd/actionlint/blob/v1.7.10/docs/checks.md
105+
https://github.com/rhysd/actionlint/blob/v1.7.11/docs/checks.md
106106

107107
Full list of all checks done by actionlint with example inputs, outputs, and playground links.
108108

109109
### Installation
110110

111-
https://github.com/rhysd/actionlint/blob/v1.7.10/docs/install.md
111+
https://github.com/rhysd/actionlint/blob/v1.7.11/docs/install.md
112112

113113
Installation instructions. Prebuilt binaries, Homebrew package, building from source, a Docker
114114
image, a download script (for CI) are available.
115115

116116
### Usage
117117

118-
https://github.com/rhysd/actionlint/blob/v1.7.10/docs/usage.md
118+
https://github.com/rhysd/actionlint/blob/v1.7.11/docs/usage.md
119119

120120
How to use `actionlint` command locally or on GitHub Actions, the online playground, an official
121121
Docker image, and integrations with reviewdog, Problem Matchers, super-linter, pre-commit.
122122

123123
### Configuration
124124

125-
https://github.com/rhysd/actionlint/blob/v1.7.10/docs/config.md
125+
https://github.com/rhysd/actionlint/blob/v1.7.11/docs/config.md
126126

127127
How to configure actionlint behavior by the configuration file `actionlint.yaml`.
128128

129129
### Go API
130130

131-
https://github.com/rhysd/actionlint/blob/v1.7.10/docs/api.md
131+
https://github.com/rhysd/actionlint/blob/v1.7.11/docs/api.md
132132

133133
How to use actionlint as Go library.
134134

135135
### References
136136

137-
https://github.com/rhysd/actionlint/blob/v1.7.10/docs/reference.md
137+
https://github.com/rhysd/actionlint/blob/v1.7.11/docs/reference.md
138138

139139
Links to resources.
140140

playground/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
<h1 class="title">
2626
<a id="logo" rel="noopener" href="https://github.com/rhysd/actionlint"><i class="devicon-github-original"></i></a>
2727
actionlint playground
28-
<a rel="noopener" href="https://github.com/rhysd/actionlint/releases/tag/v1.7.10">
29-
<span class="tag is-dark" id="version">v1.7.10</span>
28+
<a rel="noopener" href="https://github.com/rhysd/actionlint/releases/tag/v1.7.11">
29+
<span class="tag is-dark" id="version">v1.7.11</span>
3030
</a>
3131
</h1>
3232
<h2 class="subtitle">Static checker for GitHub Actions workflow files</h2>
@@ -66,7 +66,7 @@ <h2 class="subtitle">Static checker for GitHub Actions workflow files</h2>
6666
<h2><i id="res-icon" class="devicon-githubactions-plain"></i>Resources</h2>
6767
<p>
6868
<ul>
69-
<li><a class="has-text-link-my-light" target="_blank" rel="noopener" href="https://github.com/rhysd/actionlint/blob/v1.7.10/docs/checks.md">Checks by actionlint</a></li>
69+
<li><a class="has-text-link-my-light" target="_blank" rel="noopener" href="https://github.com/rhysd/actionlint/blob/v1.7.11/docs/checks.md">Checks by actionlint</a></li>
7070
<li><a class="has-text-link-my-light" target="_blank" rel="noopener" href="https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions">Workflow syntax for GitHub Actions</a></li>
7171
<li><a class="has-text-link-my-light" target="_blank" rel="noopener" href="https://docs.github.com/en/actions/learn-github-actions/contexts">Available contexts in workflow</a></li>
7272
<li><a class="has-text-link-my-light" target="_blank" rel="noopener" href="https://docs.github.com/en/actions/reference/security/secure-use">Security hardening for GitHub Actions</a></li>

0 commit comments

Comments
 (0)