[PR #1106] [MERGED] build(deps): bump github.com/rhysd/actionlint from 1.6.10 to 1.6.11 #1779

Closed
opened 2026-03-01 21:52:39 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/nektos/act/pull/1106
Author: @dependabot[bot]
Created: 4/5/2022
Status: Merged
Merged: 4/5/2022
Merged by: @mergify[bot]

Base: masterHead: dependabot/go_modules/github.com/rhysd/actionlint-1.6.11


📝 Commits (1)

  • 59625cf build(deps): bump github.com/rhysd/actionlint from 1.6.10 to 1.6.11

📊 Changes

2 files changed (+6 additions, -6 deletions)

View changed files

📝 go.mod (+2 -2)
📝 go.sum (+4 -4)

📄 Description

Bumps github.com/rhysd/actionlint from 1.6.10 to 1.6.11.

Release notes

Sourced from github.com/rhysd/actionlint's releases.

v1.6.11

  • Fix crash on making outputs in JSON format with actionlint -format '{{json .}}'. (#128)
  • Allow any outputs from actions/github-script action because it allows to set any outputs via calling core.setOutput() in JavaScript. (#104)
    - id: test
      uses: actions/github-script@v5
      with:
        script: |
          core.setOutput('answer', 42);
    - run: |
        echo "The answer is ${{ steps.test.outputs.answer }}"
    
  • Add support for Go 1.18. All released binaries were built with Go 1.18 compiler. The bottom supported version is Go 1.16 and it's not been changed.
  • Update popular actions data set (actions/cache, code-ql-actions/*, ...)
  • Update some Go module dependencies
Changelog

Sourced from github.com/rhysd/actionlint's changelog.

v1.6.11 - 05 Apr 2022

  • Fix crash on making outputs in JSON format with actionlint -format '{{json .}}'. (#128)
  • Allow any outputs from actions/github-script action because it allows to set any outputs via calling core.setOutput() in JavaScript. (#104)
    - id: test
      uses: actions/github-script@v5
      with:
        script: |
          core.setOutput('answer', 42);
    - run: |
        echo "The answer is ${{ steps.test.outputs.answer }}"
    
  • Add support for Go 1.18. Now Go 1.16 or later is supported. All released binaries were built with Go 1.18 compiler.
  • Update popular actions data set (actions/cache, code-ql-actions/*, ...)
  • Update some Go module dependencies

[Changes][v1.6.11]

Commits
  • bfddf24 add new major versions of code-ql-action/* to popular actions
  • 72c36be use the latest stable release of staticcheck on CI
  • 436a61e add test for regression of #128
  • 3a1c3d8 add missing check for line width at error (fix #128)
  • 04dc90e use template.FuncMap explicitly
  • ed85253 Revert "avoid OOB error on making error message (#128)"
  • 4891a80 avoid OOB error on making error message (#128)
  • d06be0a update golang.org/x/sys
  • 8dcc9b6 update popular actions for actions/cache@v3 and `peter-evans/create-pull-re...
  • 78f16c5 Merge pull request #126 from rhysd/ci/2007236719
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/nektos/act/pull/1106 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 4/5/2022 **Status:** ✅ Merged **Merged:** 4/5/2022 **Merged by:** [@mergify[bot]](https://github.com/apps/mergify) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/rhysd/actionlint-1.6.11` --- ### 📝 Commits (1) - [`59625cf`](https://github.com/nektos/act/commit/59625cf1054bdf4f86df50ba03c84e9efa4a2200) build(deps): bump github.com/rhysd/actionlint from 1.6.10 to 1.6.11 ### 📊 Changes **2 files changed** (+6 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+2 -2) 📝 `go.sum` (+4 -4) </details> ### 📄 Description Bumps [github.com/rhysd/actionlint](https://github.com/rhysd/actionlint) from 1.6.10 to 1.6.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rhysd/actionlint/releases">github.com/rhysd/actionlint's releases</a>.</em></p> <blockquote> <h2>v1.6.11</h2> <ul> <li>Fix crash on making <a href="https://github.com/rhysd/actionlint/blob/main/docs/usage.md#format-error-messages">outputs in JSON format</a> with <code>actionlint -format '{{json .}}'</code>. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/128">#128</a>)</li> <li>Allow any outputs from <code>actions/github-script</code> action because it allows to set any outputs via calling <code>core.setOutput()</code> in JavaScript. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/104">#104</a>) <pre lang="yaml"><code>- id: test uses: actions/github-script@v5 with: script: | core.setOutput('answer', 42); - run: | echo &quot;The answer is ${{ steps.test.outputs.answer }}&quot; </code></pre> </li> <li>Add support for Go 1.18. All released binaries were built with Go 1.18 compiler. The bottom supported version is Go 1.16 and it's not been changed.</li> <li>Update popular actions data set (<code>actions/cache</code>, <code>code-ql-actions/*</code>, ...)</li> <li>Update some Go module dependencies</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rhysd/actionlint/blob/main/CHANGELOG.md">github.com/rhysd/actionlint's changelog</a>.</em></p> <blockquote> <h1><a href="https://github.com/rhysd/actionlint/releases/tag/v1.6.11">v1.6.11</a> - 05 Apr 2022</h1> <ul> <li>Fix crash on making <a href="https://github.com/rhysd/actionlint/blob/main/docs/usage.md#format-error-messages">outputs in JSON format</a> with <code>actionlint -format '{{json .}}'</code>. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/128">#128</a>)</li> <li>Allow any outputs from <code>actions/github-script</code> action because it allows to set any outputs via calling <code>core.setOutput()</code> in JavaScript. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/104">#104</a>) <pre lang="yaml"><code>- id: test uses: actions/github-script@v5 with: script: | core.setOutput('answer', 42); - run: | echo &quot;The answer is ${{ steps.test.outputs.answer }}&quot; </code></pre> </li> <li>Add support for Go 1.18. Now Go 1.16 or later is supported. All released binaries were built with Go 1.18 compiler.</li> <li>Update popular actions data set (<code>actions/cache</code>, <code>code-ql-actions/*</code>, ...)</li> <li>Update some Go module dependencies</li> </ul> <p>[Changes][v1.6.11]</p> <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rhysd/actionlint/commit/bfddf24f8e9db37a8abb08b4d9da265e23a6add2"><code>bfddf24</code></a> add new major versions of <code>code-ql-action/*</code> to popular actions</li> <li><a href="https://github.com/rhysd/actionlint/commit/72c36bee92b4ac3c3f172af42a0bf956a64f18bc"><code>72c36be</code></a> use the latest stable release of staticcheck on CI</li> <li><a href="https://github.com/rhysd/actionlint/commit/436a61ecb4cbf1ecf7ecda36d3bc4fde0a61381b"><code>436a61e</code></a> add test for regression of <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/128">#128</a></li> <li><a href="https://github.com/rhysd/actionlint/commit/3a1c3d8ada796caa03cb3e49fd624f2ae650a0a2"><code>3a1c3d8</code></a> add missing check for line width at error (fix <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/128">#128</a>)</li> <li><a href="https://github.com/rhysd/actionlint/commit/04dc90ea914931034d80ac72d44181492bf9a2b5"><code>04dc90e</code></a> use <code>template.FuncMap</code> explicitly</li> <li><a href="https://github.com/rhysd/actionlint/commit/ed852532fc8cda4e6f188dc5db81d1e6c55a1240"><code>ed85253</code></a> Revert &quot;avoid OOB error on making error message (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/128">#128</a>)&quot;</li> <li><a href="https://github.com/rhysd/actionlint/commit/4891a80ee1dc99c93574688231eaf5c522c93e91"><code>4891a80</code></a> avoid OOB error on making error message (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/128">#128</a>)</li> <li><a href="https://github.com/rhysd/actionlint/commit/d06be0a699405d11562dd3cb4676fe34aae8e5f1"><code>d06be0a</code></a> update golang.org/x/sys</li> <li><a href="https://github.com/rhysd/actionlint/commit/8dcc9b66302612a3374b64456f8f03e79f6b2adc"><code>8dcc9b6</code></a> update popular actions for <code>actions/cache@v3</code> and `peter-evans/create-pull-re...</li> <li><a href="https://github.com/rhysd/actionlint/commit/78f16c5db3e715e52d57d1f18132a0ae75f48eb5"><code>78f16c5</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/126">#126</a> from rhysd/ci/2007236719</li> <li>Additional commits viewable in <a href="https://github.com/rhysd/actionlint/compare/v1.6.10...v1.6.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rhysd/actionlint&package-manager=go_modules&previous-version=1.6.10&new-version=1.6.11)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-01 21:52:39 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/act#1779
No description provided.