Skip to content

Commit 03d0035

Browse files
committed
bump up version to v1.7.7
1 parent 2490f0e commit 03d0035

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

.pre-commit-hooks.yaml

+1-1
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.6
16+
entry: docker.io/rhysd/actionlint:1.7.7
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

+6-6
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/learn-github-actions/security-hardening-for-github-actions#understanding-the-risk-of-script-injections
141141
[releases]: https://github.com/rhysd/actionlint/releases
142-
[checks]: https://github.com/rhysd/actionlint/blob/v1.7.6/docs/checks.md
143-
[install]: https://github.com/rhysd/actionlint/blob/v1.7.6/docs/install.md
144-
[usage]: https://github.com/rhysd/actionlint/blob/v1.7.6/docs/usage.md
145-
[config]: https://github.com/rhysd/actionlint/blob/v1.7.6/docs/config.md
146-
[api]: https://github.com/rhysd/actionlint/blob/v1.7.6/docs/api.md
147-
[refs]: https://github.com/rhysd/actionlint/blob/v1.7.6/docs/reference.md
142+
[checks]: https://github.com/rhysd/actionlint/blob/v1.7.7/docs/checks.md
143+
[install]: https://github.com/rhysd/actionlint/blob/v1.7.7/docs/install.md
144+
[usage]: https://github.com/rhysd/actionlint/blob/v1.7.7/docs/usage.md
145+
[config]: https://github.com/rhysd/actionlint/blob/v1.7.7/docs/config.md
146+
[api]: https://github.com/rhysd/actionlint/blob/v1.7.7/docs/api.md
147+
[refs]: https://github.com/rhysd/actionlint/blob/v1.7.7/docs/reference.md
148148
[issue-form]: https://github.com/rhysd/actionlint/issues/new

docs/usage.md

+4-4
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.6`)
275+
- `actionlint:{version}`: Specific version of actionlint. (e.g. `actionlint:1.7.7`)
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.6
369+
rev: v1.7.7
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 [email protected].6
428+
trunk check enable [email protected].7
429429
```
430430

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

433433
```yaml
434434
lint:
435435
enabled:
436-
436+
437437
```
438438

439439
Then just run:

man/actionlint.1.ronn

+6-6
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.6/docs/checks.md
105+
https://github.com/rhysd/actionlint/blob/v1.7.7/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.6/docs/install.md
111+
https://github.com/rhysd/actionlint/blob/v1.7.7/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.6/docs/usage.md
118+
https://github.com/rhysd/actionlint/blob/v1.7.7/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.6/docs/config.md
125+
https://github.com/rhysd/actionlint/blob/v1.7.7/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.6/docs/api.md
131+
https://github.com/rhysd/actionlint/blob/v1.7.7/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.6/docs/reference.md
137+
https://github.com/rhysd/actionlint/blob/v1.7.7/docs/reference.md
138138

139139
Links to resources.
140140

playground/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<body>
2323
<nav id="header-bar" class="navbar" role="navigation" aria-label="header navigation bar">
2424
<header class="header">
25-
<h1 class="title"><a id="logo" rel="noopener" href="https://github.com/rhysd/actionlint"><i class="devicon-github-original"></i></a> actionlint playground<span class="tag is-dark" id="version">v1.7.6</span></h1>
25+
<h1 class="title"><a id="logo" rel="noopener" href="https://github.com/rhysd/actionlint"><i class="devicon-github-original"></i></a> actionlint playground<span class="tag is-dark" id="version">v1.7.7</span></h1>
2626
<h2 class="subtitle">Static checker for GitHub Actions workflow files</h2>
2727
</header>
2828
<div id="controls" class="navbar-end">
@@ -60,7 +60,7 @@ <h2 class="subtitle">Static checker for GitHub Actions workflow files</h2>
6060
<h2><i id="res-icon" class="devicon-githubactions-plain"></i>Resources</h2>
6161
<p>
6262
<ul>
63-
<li><a class="has-text-link-my-light" target="_blank" rel="noopener" href="https://github.com/rhysd/actionlint/blob/v1.7.6/docs/checks.md">Checks by actionlint</a></li>
63+
<li><a class="has-text-link-my-light" target="_blank" rel="noopener" href="https://github.com/rhysd/actionlint/blob/v1.7.7/docs/checks.md">Checks by actionlint</a></li>
6464
<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>
6565
<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>
6666
<li><a class="has-text-link-my-light" target="_blank" rel="noopener" href="https://docs.github.com/en/actions/security-for-github-actions/security-guides/security-hardening-for-github-actions">Security hardening for GitHub Actions</a></li>

0 commit comments

Comments
 (0)