[PR #1360] [MERGED] build(deps): bump github.com/rhysd/actionlint from 1.6.18 to 1.6.19 #1904

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

📋 Pull Request Information

Original PR: https://github.com/nektos/act/pull/1360
Author: @dependabot[bot]
Created: 9/26/2022
Status: Merged
Merged: 9/26/2022
Merged by: @mergify[bot]

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


📝 Commits (2)

  • 70b16ef build(deps): bump github.com/rhysd/actionlint from 1.6.18 to 1.6.19
  • 6c8d61e Merge branch 'master' into dependabot/go_modules/github.com/rhysd/actionlint-1.6.19

📊 Changes

2 files changed (+4 additions, -5 deletions)

View changed files

📝 go.mod (+1 -1)
📝 go.sum (+3 -4)

📄 Description

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

Release notes

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

v1.6.19

  • Fix inputs, outputs, and secrets of reusable workflow should be case-insensitive. (#216)
    # .github/workflows/reusable.yaml
    on:
      workflow_call:
        inputs:
          INPUT_UPPER:
            type: string
          input_lower:
            type: string
        secrets:
          SECRET_UPPER:
          secret_lower:
    ...
    

    .github/workflows/test.yaml

    ...

    jobs: caller: uses: ./.github/workflows/reusable.yaml # Inputs and secrets are case-insensitive. So all the followings should be OK with: input_upper: ... INPUT_LOWER: ... secrets: secret_upper: ... SECRET_LOWER: ...

  • Describe how to install specific version of actionlint binary with the download script. (#218)
Changelog

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

v1.6.19 - 22 Sep 2022

  • Fix inputs, outputs, and secrets of reusable workflow should be in case-insensitive. (#216)
    # .github/workflows/reusable.yaml
    on:
      workflow_call:
        inputs:
          INPUT_UPPER:
            type: string
          input_lower:
            type: string
        secrets:
          SECRET_UPPER:
          secret_lower:
    ...
    

    .github/workflows/test.yaml

    ...

    jobs: caller: uses: ./.github/workflows/reusable.yaml # Inputs and secrets are in case-insensitive. So all the followings should be OK with: input_upper: ... INPUT_LOWER: ... secrets: secret_upper: ... SECRET_LOWER: ...

  • Describe how to install specific version of actionlint binary with the download script (#218)

[Changes][v1.6.19]

Commits
  • d81f1c3 bump up version to v1.6.19
  • 559b20e improve error message on parse error of reusable workflow file
  • 0ffabf9 Merge branch 'issue-216' (fix #216)
  • 90103e0 test type check of outputs from workflow call in case-insensitive
  • 263c68c add tests for reusable workflow call where no input/secret is defined
  • c15d911 add tests for checking inputs/secrets of reusable workflow calls in case-inse...
  • ee1012a add tests for checking inputs/secrets of reusable workflow call in case-insen...
  • c254394 explain how to install specific version of actionlint with the download scrip...
  • 6713f82 fix input/output/secret names of reusable workflow are case-insensitive (#216)
  • 0ea32b7 remove the tool to inspect workflow AST
  • 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/1360 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 9/26/2022 **Status:** ✅ Merged **Merged:** 9/26/2022 **Merged by:** [@mergify[bot]](https://github.com/apps/mergify) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/rhysd/actionlint-1.6.19` --- ### 📝 Commits (2) - [`70b16ef`](https://github.com/nektos/act/commit/70b16efe4e93142c5ffc3edaebb41834e647b440) build(deps): bump github.com/rhysd/actionlint from 1.6.18 to 1.6.19 - [`6c8d61e`](https://github.com/nektos/act/commit/6c8d61e17acf585e272ca33d871f48f4e7cc5707) Merge branch 'master' into dependabot/go_modules/github.com/rhysd/actionlint-1.6.19 ### 📊 Changes **2 files changed** (+4 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+1 -1) 📝 `go.sum` (+3 -4) </details> ### 📄 Description Bumps [github.com/rhysd/actionlint](https://github.com/rhysd/actionlint) from 1.6.18 to 1.6.19. <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.19</h2> <ul> <li>Fix inputs, outputs, and secrets of reusable workflow should be case-insensitive. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/216">#216</a>) <pre lang="yaml"><code># .github/workflows/reusable.yaml on: workflow_call: inputs: INPUT_UPPER: type: string input_lower: type: string secrets: SECRET_UPPER: secret_lower: ... <h1>.github/workflows/test.yaml</h1> <p>...</p> <p>jobs: caller: uses: ./.github/workflows/reusable.yaml # Inputs and secrets are case-insensitive. So all the followings should be OK with: input_upper: ... INPUT_LOWER: ... secrets: secret_upper: ... SECRET_LOWER: ... </code></pre></p> </li> <li>Describe <a href="https://github.com/rhysd/actionlint/blob/main/docs/install.md#download-script">how to install specific version of <code>actionlint</code> binary with the download script</a>. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/218">#218</a>)</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.19">v1.6.19</a> - 22 Sep 2022</h1> <ul> <li>Fix inputs, outputs, and secrets of reusable workflow should be in case-insensitive. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/216">#216</a>) <pre lang="yaml"><code># .github/workflows/reusable.yaml on: workflow_call: inputs: INPUT_UPPER: type: string input_lower: type: string secrets: SECRET_UPPER: secret_lower: ... <h1>.github/workflows/test.yaml</h1> <p>...</p> <p>jobs: caller: uses: ./.github/workflows/reusable.yaml # Inputs and secrets are in case-insensitive. So all the followings should be OK with: input_upper: ... INPUT_LOWER: ... secrets: secret_upper: ... SECRET_LOWER: ... </code></pre></p> </li> <li>Describe <a href="https://github.com/rhysd/actionlint/blob/main/docs/install.md#download-script">how to install specific version of <code>actionlint</code> binary with the download script</a> (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/218">#218</a>)</li> </ul> <p>[Changes][v1.6.19]</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/d81f1c3eabf0458bbd85ef88ec3d0db6bde12c50"><code>d81f1c3</code></a> bump up version to v1.6.19</li> <li><a href="https://github.com/rhysd/actionlint/commit/559b20e1a363f5f64d4338649619b3de5dfedced"><code>559b20e</code></a> improve error message on parse error of reusable workflow file</li> <li><a href="https://github.com/rhysd/actionlint/commit/0ffabf95ca3d65dceb128e4e8c9ba55cb6904b62"><code>0ffabf9</code></a> Merge branch 'issue-216' (fix <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/216">#216</a>)</li> <li><a href="https://github.com/rhysd/actionlint/commit/90103e0c8298d2a94ebaa05df657dfc7dc95035f"><code>90103e0</code></a> test type check of outputs from workflow call in case-insensitive</li> <li><a href="https://github.com/rhysd/actionlint/commit/263c68c4dddfd686f2b0764a331d69c58affb433"><code>263c68c</code></a> add tests for reusable workflow call where no input/secret is defined</li> <li><a href="https://github.com/rhysd/actionlint/commit/c15d91178c87c310e7af97a5b417d7b19b40d400"><code>c15d911</code></a> add tests for checking inputs/secrets of reusable workflow calls in case-inse...</li> <li><a href="https://github.com/rhysd/actionlint/commit/ee1012a6049ca1c99bc844fd79e837879a359b89"><code>ee1012a</code></a> add tests for checking inputs/secrets of reusable workflow call in case-insen...</li> <li><a href="https://github.com/rhysd/actionlint/commit/c254394b2ea6b4de29275606113e42f60e170b4f"><code>c254394</code></a> explain how to install specific version of actionlint with the download scrip...</li> <li><a href="https://github.com/rhysd/actionlint/commit/6713f829e4763c69ddc31d4eb2783521c1b5f87a"><code>6713f82</code></a> fix input/output/secret names of reusable workflow are case-insensitive (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/216">#216</a>)</li> <li><a href="https://github.com/rhysd/actionlint/commit/0ea32b74cff0913eb53927bd293ef1585a5e14f1"><code>0ea32b7</code></a> remove the tool to inspect workflow AST</li> <li>Additional commits viewable in <a href="https://github.com/rhysd/actionlint/compare/v1.6.18...v1.6.19">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.18&new-version=1.6.19)](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:10 +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#1904
No description provided.