[PR #1371] [MERGED] build(deps): bump github.com/rhysd/actionlint from 1.6.19 to 1.6.20 #1908

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

📋 Pull Request Information

Original PR: https://github.com/nektos/act/pull/1371
Author: @dependabot[bot]
Created: 10/3/2022
Status: Merged
Merged: 10/3/2022
Merged by: @mergify[bot]

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


📝 Commits (1)

  • 9798e10 build(deps): bump github.com/rhysd/actionlint from 1.6.19 to 1.6.20

📊 Changes

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

View changed files

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

📄 Description

Bumps github.com/rhysd/actionlint from 1.6.19 to 1.6.20.

Release notes

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

v1.6.20

  • Support run-name which GitHub introduced recently. It is a name of workflow run dynamically configured. See the official document for more details. (#220)
    on: push
    run-name: Deploy by @${{ github.actor }}
    

    jobs: ...

  • Add end_column property to JSON representation of error. The property indicates a column of the end position of ^~~~~~~ indicator in snippet. Note that end_column is equal to column when the indicator cannot be shown. (#219)
    $ actionlint -format '{{json .}}' test.yaml | jq
    [
      {
        "message": "property \"unknown_prop\" is not defined in object type {arch: string; debug: string; name: string; os: string; temp: string; tool_cache: string; workspace: string}",
        "filepath": "test.yaml",
        "line": 7,
        "column": 23,
        "kind": "expression",
        "snippet": "      - run: echo ${{ runner.unknown_prop }}\n                      ^~~~~~~~~~~~~~~~~~~",
        "end_column": 41
      }
    ]
    
  • Overhaul the workflow parser to parse workflow keys in case-insensitive. This is a work derived from the fix of #216. Now the parser parses all workflow keys in case-insensitive way correctly. Note that permission names at permissions: are exceptionally case-sensitive.
    • This fixes properties of inputs for workflow_dispatch were not case-insensitive.
    • This fixes inputs and outputs of local actions were not handled in case-insensitive way.
  • Update popular actions data set. actions/stale@v6 was newly added.
Changelog

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

v1.6.20 - 30 Sep 2022

  • Support run-name which GitHub introduced recently. It is a name of workflow run dynamically configured. See the official document for more details. (#220)
    on: push
    run-name: Deploy by @${{ github.actor }}
    

    jobs: ...

  • Add end_column property to JSON representation of error. The property indicates a column of the end position of ^~~~~~~ indicator in snippet. Note that end_column is equal to column when the indicator cannot be shown. (#219)
    $ actionlint -format '{{json .}}' test.yaml | jq
    [
      {
        "message": "property \"unknown_prop\" is not defined in object type {arch: string; debug: string; name: string; os: string; temp: string; tool_cache: string; workspace: string}",
        "filepath": "test.yaml",
        "line": 7,
        "column": 23,
        "kind": "expression",
        "snippet": "      - run: echo ${{ runner.unknown_prop }}\n                      ^~~~~~~~~~~~~~~~~~~",
        "end_column": 41
      }
    ]
    
  • Overhaul the workflow parser to parse workflow keys in case-insensitive. This is a work derived from the fix of #216. Now the parser parses all workflow keys in case-insensitive way correctly. Note that permission names at permissions: are exceptionally case-sensitive.
    • This fixes properties of inputs for workflow_dispatch are not case-insensitive.
    • This fixes inputs and outputs of local actions are not handled in case-insensitive way.
  • Update popular actions data set. actions/stale@v6 was newly added.

[Changes][v1.6.20]

Commits
  • 2df6872 bump up version to v1.6.20
  • 685561e fix test data for checking problem matcher
  • 72b7caa add test for checking permission names are case-sensitive
  • 4e4d0a2 update popular actions data set to the latest
  • 57c7c7d add end_column property to JSON representation of error (fix #219)
  • f0c915d support run-name at top level
  • c17521c Merge branch 'local-action-refactor'
  • a90861a validate action metadata inputs and outputs
  • 3efa175 fix and add tests for generating popular actions data set
  • cb0b86a distinguish IDs from input/output names in action.yml
  • 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/1371 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/3/2022 **Status:** ✅ Merged **Merged:** 10/3/2022 **Merged by:** [@mergify[bot]](https://github.com/apps/mergify) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/rhysd/actionlint-1.6.20` --- ### 📝 Commits (1) - [`9798e10`](https://github.com/nektos/act/commit/9798e100bd84567361415031d0a70d324ae5efb9) build(deps): bump github.com/rhysd/actionlint from 1.6.19 to 1.6.20 ### 📊 Changes **2 files changed** (+3 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+1 -1) 📝 `go.sum` (+2 -2) </details> ### 📄 Description Bumps [github.com/rhysd/actionlint](https://github.com/rhysd/actionlint) from 1.6.19 to 1.6.20. <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.20</h2> <ul> <li>Support <code>run-name</code> which <a href="https://github.blog/changelog/2022-09-26-github-actions-dynamic-names-for-workflow-runs/">GitHub introduced recently</a>. It is a name of workflow run dynamically configured. See <a href="https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#run-name">the official document</a> for more details. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/220">#220</a>) <pre lang="yaml"><code>on: push run-name: Deploy by @${{ github.actor }} <p>jobs: ... </code></pre></p> </li> <li>Add <code>end_column</code> property to JSON representation of error. The property indicates a column of the end position of <code>^~~~~~~</code> indicator in snippet. Note that <code>end_column</code> is equal to <code>column</code> when the indicator cannot be shown. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/219">#219</a>) <pre lang="console"><code>$ actionlint -format '{{json .}}' test.yaml | jq [ { &quot;message&quot;: &quot;property \&quot;unknown_prop\&quot; is not defined in object type {arch: string; debug: string; name: string; os: string; temp: string; tool_cache: string; workspace: string}&quot;, &quot;filepath&quot;: &quot;test.yaml&quot;, &quot;line&quot;: 7, &quot;column&quot;: 23, &quot;kind&quot;: &quot;expression&quot;, &quot;snippet&quot;: &quot; - run: echo ${{ runner.unknown_prop }}\n ^~~~~~~~~~~~~~~~~~~&quot;, &quot;end_column&quot;: 41 } ] </code></pre> </li> <li>Overhaul the workflow parser to parse workflow keys in case-insensitive. This is a work derived from the fix of <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/216">#216</a>. Now the parser parses all workflow keys in case-insensitive way correctly. Note that permission names at <code>permissions:</code> are exceptionally case-sensitive. <ul> <li>This fixes properties of <code>inputs</code> for <code>workflow_dispatch</code> were not case-insensitive.</li> <li>This fixes inputs and outputs of local actions were not handled in case-insensitive way.</li> </ul> </li> <li>Update popular actions data set. <code>actions/stale@v6</code> was newly added.</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.20">v1.6.20</a> - 30 Sep 2022</h1> <ul> <li>Support <code>run-name</code> which <a href="https://github.blog/changelog/2022-09-26-github-actions-dynamic-names-for-workflow-runs/">GitHub introduced recently</a>. It is a name of workflow run dynamically configured. See <a href="https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#run-name">the official document</a> for more details. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/220">#220</a>) <pre lang="yaml"><code>on: push run-name: Deploy by @${{ github.actor }} <p>jobs: ... </code></pre></p> </li> <li>Add <code>end_column</code> property to JSON representation of error. The property indicates a column of the end position of <code>^~~~~~~</code> indicator in snippet. Note that <code>end_column</code> is equal to <code>column</code> when the indicator cannot be shown. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/219">#219</a>) <pre lang="console"><code>$ actionlint -format '{{json .}}' test.yaml | jq [ { &quot;message&quot;: &quot;property \&quot;unknown_prop\&quot; is not defined in object type {arch: string; debug: string; name: string; os: string; temp: string; tool_cache: string; workspace: string}&quot;, &quot;filepath&quot;: &quot;test.yaml&quot;, &quot;line&quot;: 7, &quot;column&quot;: 23, &quot;kind&quot;: &quot;expression&quot;, &quot;snippet&quot;: &quot; - run: echo ${{ runner.unknown_prop }}\n ^~~~~~~~~~~~~~~~~~~&quot;, &quot;end_column&quot;: 41 } ] </code></pre> </li> <li>Overhaul the workflow parser to parse workflow keys in case-insensitive. This is a work derived from the fix of <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/216">#216</a>. Now the parser parses all workflow keys in case-insensitive way correctly. Note that permission names at <code>permissions:</code> are exceptionally case-sensitive. <ul> <li>This fixes properties of <code>inputs</code> for <code>workflow_dispatch</code> are not case-insensitive.</li> <li>This fixes inputs and outputs of local actions are not handled in case-insensitive way.</li> </ul> </li> <li>Update popular actions data set. <code>actions/stale@v6</code> was newly added.</li> </ul> <p>[Changes][v1.6.20]</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/2df6872d4bde2b030214429d65f7aeee79ceee47"><code>2df6872</code></a> bump up version to v1.6.20</li> <li><a href="https://github.com/rhysd/actionlint/commit/685561e81ac9924149d35f62e8506de24cf721aa"><code>685561e</code></a> fix test data for checking problem matcher</li> <li><a href="https://github.com/rhysd/actionlint/commit/72b7caa4693d818aeb9e4b7d579341509d09879f"><code>72b7caa</code></a> add test for checking permission names are case-sensitive</li> <li><a href="https://github.com/rhysd/actionlint/commit/4e4d0a2e1f22e502971fab9e6eb60eebf8e0576f"><code>4e4d0a2</code></a> update popular actions data set to the latest</li> <li><a href="https://github.com/rhysd/actionlint/commit/57c7c7d921792984353a1458cb419a2b5e206cfc"><code>57c7c7d</code></a> add <code>end_column</code> property to JSON representation of error (fix <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/219">#219</a>)</li> <li><a href="https://github.com/rhysd/actionlint/commit/f0c915db59f398f6c7dc4b60a3e91b022449f152"><code>f0c915d</code></a> support <code>run-name</code> at top level</li> <li><a href="https://github.com/rhysd/actionlint/commit/c17521c3c179fdd77b87056522fde6980c3cff27"><code>c17521c</code></a> Merge branch 'local-action-refactor'</li> <li><a href="https://github.com/rhysd/actionlint/commit/a90861afb9a6b94d921387bb8b28c75a8f98b664"><code>a90861a</code></a> validate action metadata inputs and outputs</li> <li><a href="https://github.com/rhysd/actionlint/commit/3efa1757309a2846905013fc1dd280058a451c41"><code>3efa175</code></a> fix and add tests for generating popular actions data set</li> <li><a href="https://github.com/rhysd/actionlint/commit/cb0b86a7e4d7614fc0ae1c8995753b22b9a4bdd5"><code>cb0b86a</code></a> distinguish IDs from input/output names in action.yml</li> <li>Additional commits viewable in <a href="https://github.com/rhysd/actionlint/compare/v1.6.19...v1.6.20">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.19&new-version=1.6.20)](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:53:12 +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#1908
No description provided.