[PR #2228] [MERGED] build(deps): bump github.com/rhysd/actionlint from 1.6.26 to 1.6.27 #2335

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

📋 Pull Request Information

Original PR: https://github.com/nektos/act/pull/2228
Author: @dependabot[bot]
Created: 2/26/2024
Status: Merged
Merged: 2/26/2024
Merged by: @mergify[bot]

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


📝 Commits (1)

  • b2371a7 build(deps): bump github.com/rhysd/actionlint from 1.6.26 to 1.6.27

📊 Changes

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

View changed files

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

📄 Description

Bumps github.com/rhysd/actionlint from 1.6.26 to 1.6.27.

Release notes

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

v1.6.27

  • Add macOS 14 runner labels for Apple Silicon support. The following labels are added. (thanks @​harryzcy, #392)
    • macos-14
    • macos-14-xlarge
    • macos-14-large
  • Remove ubuntu-18.04 runner label from runners list since it is no longer supported. (#363)
  • Allow glob patterns in self-hosted-runner.labels configuration. For example, the following configuration defines any runner labels prefixed with private-linux-. (thanks @​kishaningithub, #378)
    self-hosted-runner:
        labels:
          - private-linux-*
    
  • Fix a race condition bug when -format option is used for linting multiple workflow files. Thanks @​ReinAchten-TomTom for your help on the investigation. (#370)
  • Fix a race condition due to conflicts between some goroutine which starts to run shellcheck process and other goroutine which starts to wait until all processes finish.
  • The popular actions data set was updated to the latest and the following actions were newly added. (thanks @​jmarshall, #380)
    • google-github-actions/auth
    • google-github-actions/get-secretmanager-secrets
    • google-github-actions/setup-gcloud
    • google-github-actions/upload-cloud-storage
    • pulumi/actions
    • pypa/gh-action-pypi-publish
  • Add support for larger runner labels. The following labels are added. (thanks @​therealdwright, #371)
    • windows-latest-8-cores
    • ubuntu-latest-4-cores
    • ubuntu-latest-8-cores
    • ubuntu-latest-16-cores
  • The following WebHook types are supported for pull_request event.
    • enqueued
    • dequeued
    • milestoned
    • demilestoned
  • Explain how to control shellckeck behavior in the shellcheck rule document. Use SHELLCHECK_OPTS environment variable to pass arguments to shellcheck. See the shellcheck's official document for more details.
    # Enable some optional rules
    SHELLCHECK_OPTS='--enable=avoid-nullary-conditions' actionlint
    # Disable some rules
    SHELLCHECK_OPTS='--exclude=SC2129' actionlint
    
  • Explicitly specify docker.io host name in pre-commit hook. (thanks @​gotmax23, #382)
  • Explain how to report issues and send patches in CONTRIBUTING.md.
  • Fix the link to super-linter project. (thanks @​zkoppert, #376)
  • Add the instruction to install actionlint via the Arch Linux's official repository. (thanks @​sorairolake, #381)
  • Prefer fixed revisions in the pre-commit usage. (thanks @​corneliusroemer, #354)
  • Add instructions to use actionlint with Emacs. (thanks @​tirimia, #341)
  • Add instructions to use actionlint with Vim and Neovim text editors.
  • Add actionlint.RuleBase.Config method to get the actionlint configuration passed to rules. (thanks @​hugo-syn, #387)
  • Add actionlint.ContainsExpression function to check if the given string contains ${{ }} placeholders or not. (thanks @​hugo-syn, #388)
  • Support Go 1.22 and set the minimum supported Go version to 1.18 for x/sys package.
  • Update Go dependencies to the latest.
Changelog

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

v1.6.27 - 24 Feb 2024

  • Add macOS 14 runner labels for Apple Silicon support. The following labels are added. (thanks @​harryzcy, #392)
    • macos-14
    • macos-14-xlarge
    • macos-14-large
  • Remove ubuntu-18.04 runner label from runners list since it is no longer supported. (#363)
  • Allow glob patterns in self-hosted-runner.labels configuration. For example, the following configuration defines any runner labels prefixed with private-linux-. (thanks @​kishaningithub, #378)
    self-hosted-runner:
        labels:
          - private-linux-*
    
  • Fix a race condition bug when -format option is used for linting multiple workflow files. Thanks @​ReinAchten-TomTom for your help on the investigation. (#370)
  • Fix a race condition due to conflicts between some goroutine which starts to run shellcheck process and other goroutine which starts to wait until all processes finish.
  • The popular actions data set was updated to the latest and the following actions were newly added. (thanks @​jmarshall, #380)
    • google-github-actions/auth
    • google-github-actions/get-secretmanager-secrets
    • google-github-actions/setup-gcloud
    • google-github-actions/upload-cloud-storage
    • pulumi/actions
    • pypa/gh-action-pypi-publish
  • Add support for larger runner labels. The following labels are added. (thanks @​therealdwright, #371)
    • windows-latest-8-cores
    • ubuntu-latest-4-cores
    • ubuntu-latest-8-cores
    • ubuntu-latest-16-cores
  • The following WebHook types are supported for pull_request event.
    • enqueued
    • dequeued
    • milestoned
    • demilestoned
  • Explain how to control shellckeck behavior in the shellcheck rule document. Use SHELLCHECK_OPTS environment variable to pass arguments to shellcheck. See the shellcheck's official document for more details.
    # Enable some optional rules
    SHELLCHECK_OPTS='--enable=avoid-nullary-conditions' actionlint
    # Disable some rules
    SHELLCHECK_OPTS='--exclude=SC2129' actionlint
    
  • Explicitly specify docker.io host name in pre-commit hook. (thanks @​gotmax23, #382)
  • Explain how to report issues and send patches in CONTRIBUTING.md.
  • Fix the link to super-linter project. (thanks @​zkoppert, #376)
  • Add the instruction to install actionlint via the Arch Linux's official repository. (thanks @​sorairolake, #381)
  • Prefer fixed revisions in the pre-commit usage. (thanks @​corneliusroemer, #354)
  • Add instructions to use actionlint with Emacs. (thanks @​tirimia, #341)
  • Add instructions to use actionlint with Vim and Neovim text editors.
  • Add actionlint.RuleBase.Config method to get the actionlint configuration passed to rules. (thanks @​hugo-syn, #387)
  • Add actionlint.ContainsExpression function to check if the given string contains ${{ }} placeholders or not. (thanks @​hugo-syn, #388)
  • Support Go 1.22 and set the minimum supported Go version to 1.18 for x/sys package.
  • Update Go dependencies to the latest.

... (truncated)

Commits
  • c6bd062 bump up version to v1.6.27
  • 59b151b Merge pull request #403 from rhysd/ci/8027279341
  • 3e12031 update generated files by go generate on CI
  • 0b49da7 run sed once to replace all versions in a file
  • 83b81d5 fix version bump script generates garbage files
  • ec9009f explain how to disable/enable shellcheck rules
  • 5281740 run concurrent processes test case with multiple goroutines
  • 9eb8b7b fix race condition when process is created and proc.wait() is called at the...
  • f93f97b update versions in usage document by bump-version.bash
  • 9740795 Merge pull request #399 from rhysd/ci/7938396082
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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/2228 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/26/2024 **Status:** ✅ Merged **Merged:** 2/26/2024 **Merged by:** [@mergify[bot]](https://github.com/apps/mergify) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/rhysd/actionlint-1.6.27` --- ### 📝 Commits (1) - [`b2371a7`](https://github.com/nektos/act/commit/b2371a772f2ed3265dd46af4c364961b76db3d94) build(deps): bump github.com/rhysd/actionlint from 1.6.26 to 1.6.27 ### 📊 Changes **2 files changed** (+12 additions, -12 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+4 -4) 📝 `go.sum` (+8 -8) </details> ### 📄 Description Bumps [github.com/rhysd/actionlint](https://github.com/rhysd/actionlint) from 1.6.26 to 1.6.27. <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.27</h2> <ul> <li>Add macOS 14 runner labels for <a href="https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/">Apple Silicon support</a>. The following labels are added. (thanks <a href="https://github.com/harryzcy"><code>@​harryzcy</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/392">#392</a>) <ul> <li><code>macos-14</code></li> <li><code>macos-14-xlarge</code></li> <li><code>macos-14-large</code></li> </ul> </li> <li>Remove <code>ubuntu-18.04</code> runner label from runners list since <a href="https://github.blog/changelog/2022-08-09-github-actions-the-ubuntu-18-04-actions-runner-image-is-being-deprecated-and-will-be-removed-by-12-1-22/">it is no longer supported</a>. (<a href="https://redirect.github.com/rhysd/actionlint/issues/363">#363</a>)</li> <li>Allow glob patterns in <code>self-hosted-runner.labels</code> configuration. For example, the following configuration defines any runner labels prefixed with <code>private-linux-</code>. (thanks <a href="https://github.com/kishaningithub"><code>@​kishaningithub</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/378">#378</a>) <pre lang="yaml"><code>self-hosted-runner: labels: - private-linux-* </code></pre> </li> <li>Fix a race condition bug when <code>-format</code> option is used for linting multiple workflow files. Thanks <a href="https://github.com/ReinAchten-TomTom"><code>@​ReinAchten-TomTom</code></a> for your help on the investigation. (<a href="https://redirect.github.com/rhysd/actionlint/issues/370">#370</a>)</li> <li>Fix a race condition due to conflicts between some goroutine which starts to run shellcheck process and other goroutine which starts to wait until all processes finish.</li> <li>The popular actions data set was updated to the latest and the following actions were newly added. (thanks <a href="https://github.com/jmarshall"><code>@​jmarshall</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/380">#380</a>) <ul> <li><code>google-github-actions/auth</code></li> <li><code>google-github-actions/get-secretmanager-secrets</code></li> <li><code>google-github-actions/setup-gcloud</code></li> <li><code>google-github-actions/upload-cloud-storage</code></li> <li><code>pulumi/actions</code></li> <li><code>pypa/gh-action-pypi-publish</code></li> </ul> </li> <li>Add support for larger runner labels. The following labels are added. (thanks <a href="https://github.com/therealdwright"><code>@​therealdwright</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/371">#371</a>) <ul> <li><code>windows-latest-8-cores</code></li> <li><code>ubuntu-latest-4-cores</code></li> <li><code>ubuntu-latest-8-cores</code></li> <li><code>ubuntu-latest-16-cores</code></li> </ul> </li> <li>The following WebHook types are supported for <code>pull_request</code> event. <ul> <li><code>enqueued</code></li> <li><code>dequeued</code></li> <li><code>milestoned</code></li> <li><code>demilestoned</code></li> </ul> </li> <li>Explain how to control shellckeck behavior in the <a href="https://github.com/rhysd/actionlint/blob/main/docs/checks.md#check-shellcheck-integ">shellcheck rule document</a>. Use <code>SHELLCHECK_OPTS</code> environment variable to pass arguments to shellcheck. See <a href="https://github.com/koalaman/shellcheck/wiki/Integration#environment-variables">the shellcheck's official document</a> for more details. <pre><code># Enable some optional rules SHELLCHECK_OPTS='--enable=avoid-nullary-conditions' actionlint # Disable some rules SHELLCHECK_OPTS='--exclude=SC2129' actionlint </code></pre> </li> <li>Explicitly specify <code>docker.io</code> host name in pre-commit hook. (thanks <a href="https://github.com/gotmax23"><code>@​gotmax23</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/382">#382</a>)</li> <li>Explain how to report issues and send patches in <a href="https://github.com/rhysd/actionlint/blob/main/CONTRIBUTING.md">CONTRIBUTING.md</a>.</li> <li>Fix the link to super-linter project. (thanks <a href="https://github.com/zkoppert"><code>@​zkoppert</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/376">#376</a>)</li> <li>Add the instruction to install actionlint via the Arch Linux's official repository. (thanks <a href="https://github.com/sorairolake"><code>@​sorairolake</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/381">#381</a>)</li> <li>Prefer fixed revisions in the pre-commit usage. (thanks <a href="https://github.com/corneliusroemer"><code>@​corneliusroemer</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/354">#354</a>)</li> <li>Add instructions to use actionlint with Emacs. (thanks <a href="https://github.com/tirimia"><code>@​tirimia</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/341">#341</a>)</li> <li>Add instructions to use actionlint with Vim and Neovim text editors.</li> <li>Add <a href="https://pkg.go.dev/github.com/rhysd/actionlint#RuleBase.Config"><code>actionlint.RuleBase.Config</code></a> method to get the actionlint configuration passed to rules. (thanks <a href="https://github.com/hugo-syn"><code>@​hugo-syn</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/387">#387</a>)</li> <li>Add <a href="https://pkg.go.dev/github.com/rhysd/actionlint#ContainsExpression"><code>actionlint.ContainsExpression</code></a> function to check if the given string contains <code>${{ }}</code> placeholders or not. (thanks <a href="https://github.com/hugo-syn"><code>@​hugo-syn</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/388">#388</a>)</li> <li>Support Go 1.22 and set the minimum supported Go version to 1.18 for <code>x/sys</code> package.</li> <li>Update Go dependencies to the latest.</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.27">v1.6.27</a> - 24 Feb 2024</h1> <ul> <li>Add macOS 14 runner labels for <a href="https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/">Apple Silicon support</a>. The following labels are added. (thanks <a href="https://github.com/harryzcy"><code>@​harryzcy</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/392">#392</a>) <ul> <li><code>macos-14</code></li> <li><code>macos-14-xlarge</code></li> <li><code>macos-14-large</code></li> </ul> </li> <li>Remove <code>ubuntu-18.04</code> runner label from runners list since <a href="https://github.blog/changelog/2022-08-09-github-actions-the-ubuntu-18-04-actions-runner-image-is-being-deprecated-and-will-be-removed-by-12-1-22/">it is no longer supported</a>. (<a href="https://redirect.github.com/rhysd/actionlint/issues/363">#363</a>)</li> <li>Allow glob patterns in <code>self-hosted-runner.labels</code> configuration. For example, the following configuration defines any runner labels prefixed with <code>private-linux-</code>. (thanks <a href="https://github.com/kishaningithub"><code>@​kishaningithub</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/378">#378</a>) <pre lang="yaml"><code>self-hosted-runner: labels: - private-linux-* </code></pre> </li> <li>Fix a race condition bug when <code>-format</code> option is used for linting multiple workflow files. Thanks <a href="https://github.com/ReinAchten-TomTom"><code>@​ReinAchten-TomTom</code></a> for your help on the investigation. (<a href="https://redirect.github.com/rhysd/actionlint/issues/370">#370</a>)</li> <li>Fix a race condition due to conflicts between some goroutine which starts to run shellcheck process and other goroutine which starts to wait until all processes finish.</li> <li>The popular actions data set was updated to the latest and the following actions were newly added. (thanks <a href="https://github.com/jmarshall"><code>@​jmarshall</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/380">#380</a>) <ul> <li><code>google-github-actions/auth</code></li> <li><code>google-github-actions/get-secretmanager-secrets</code></li> <li><code>google-github-actions/setup-gcloud</code></li> <li><code>google-github-actions/upload-cloud-storage</code></li> <li><code>pulumi/actions</code></li> <li><code>pypa/gh-action-pypi-publish</code></li> </ul> </li> <li>Add support for larger runner labels. The following labels are added. (thanks <a href="https://github.com/therealdwright"><code>@​therealdwright</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/371">#371</a>) <ul> <li><code>windows-latest-8-cores</code></li> <li><code>ubuntu-latest-4-cores</code></li> <li><code>ubuntu-latest-8-cores</code></li> <li><code>ubuntu-latest-16-cores</code></li> </ul> </li> <li>The following WebHook types are supported for <code>pull_request</code> event. <ul> <li><code>enqueued</code></li> <li><code>dequeued</code></li> <li><code>milestoned</code></li> <li><code>demilestoned</code></li> </ul> </li> <li>Explain how to control shellckeck behavior in the <a href="https://github.com/rhysd/actionlint/blob/main/docs/checks.md#check-shellcheck-integ">shellcheck rule document</a>. Use <code>SHELLCHECK_OPTS</code> environment variable to pass arguments to shellcheck. See <a href="https://github.com/koalaman/shellcheck/wiki/Integration#environment-variables">the shellcheck's official document</a> for more details. <pre><code># Enable some optional rules SHELLCHECK_OPTS='--enable=avoid-nullary-conditions' actionlint # Disable some rules SHELLCHECK_OPTS='--exclude=SC2129' actionlint </code></pre> </li> <li>Explicitly specify <code>docker.io</code> host name in pre-commit hook. (thanks <a href="https://github.com/gotmax23"><code>@​gotmax23</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/382">#382</a>)</li> <li>Explain how to report issues and send patches in <a href="https://github.com/rhysd/actionlint/blob/main/CONTRIBUTING.md">CONTRIBUTING.md</a>.</li> <li>Fix the link to super-linter project. (thanks <a href="https://github.com/zkoppert"><code>@​zkoppert</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/376">#376</a>)</li> <li>Add the instruction to install actionlint via the Arch Linux's official repository. (thanks <a href="https://github.com/sorairolake"><code>@​sorairolake</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/381">#381</a>)</li> <li>Prefer fixed revisions in the pre-commit usage. (thanks <a href="https://github.com/corneliusroemer"><code>@​corneliusroemer</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/354">#354</a>)</li> <li>Add instructions to use actionlint with Emacs. (thanks <a href="https://github.com/tirimia"><code>@​tirimia</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/341">#341</a>)</li> <li>Add instructions to use actionlint with Vim and Neovim text editors.</li> <li>Add <code>actionlint.RuleBase.Config</code> method to get the actionlint configuration passed to rules. (thanks <a href="https://github.com/hugo-syn"><code>@​hugo-syn</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/387">#387</a>)</li> <li>Add <code>actionlint.ContainsExpression</code> function to check if the given string contains <code>${{ }}</code> placeholders or not. (thanks <a href="https://github.com/hugo-syn"><code>@​hugo-syn</code></a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/388">#388</a>)</li> <li>Support Go 1.22 and set the minimum supported Go version to 1.18 for <code>x/sys</code> package.</li> <li>Update Go dependencies to the latest.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rhysd/actionlint/commit/c6bd06256dd700a45e483869bcdcf304239393a6"><code>c6bd062</code></a> bump up version to v1.6.27</li> <li><a href="https://github.com/rhysd/actionlint/commit/59b151be8cd78730d5f3b4ca5160ad8151468e6b"><code>59b151b</code></a> Merge pull request <a href="https://redirect.github.com/rhysd/actionlint/issues/403">#403</a> from rhysd/ci/8027279341</li> <li><a href="https://github.com/rhysd/actionlint/commit/3e120317840765488e93556538824c8985cc7ffe"><code>3e12031</code></a> update generated files by <code>go generate</code> on CI</li> <li><a href="https://github.com/rhysd/actionlint/commit/0b49da7dc4e7861dc6352384c89cdbb57056f3f2"><code>0b49da7</code></a> run <code>sed</code> once to replace all versions in a file</li> <li><a href="https://github.com/rhysd/actionlint/commit/83b81d5ee5db52a2f39ab7c460d42fcd3ecf89ae"><code>83b81d5</code></a> fix version bump script generates garbage files</li> <li><a href="https://github.com/rhysd/actionlint/commit/ec9009fc7c7f86b5998b236f52bd68d5302bf6fe"><code>ec9009f</code></a> explain how to disable/enable shellcheck rules</li> <li><a href="https://github.com/rhysd/actionlint/commit/52817400c3fefde036d1c7ffd37659c24041f332"><code>5281740</code></a> run concurrent processes test case with multiple goroutines</li> <li><a href="https://github.com/rhysd/actionlint/commit/9eb8b7bd658af1065a9a52ac78f6a7f0ee70019e"><code>9eb8b7b</code></a> fix race condition when process is created and <code>proc.wait()</code> is called at the...</li> <li><a href="https://github.com/rhysd/actionlint/commit/f93f97bc7d2dc48b25bb6665d08d116fbf66a117"><code>f93f97b</code></a> update versions in usage document by bump-version.bash</li> <li><a href="https://github.com/rhysd/actionlint/commit/9740795fbb79710a37fd95d52e80ecd48ace4f27"><code>9740795</code></a> Merge pull request <a href="https://redirect.github.com/rhysd/actionlint/issues/399">#399</a> from rhysd/ci/7938396082</li> <li>Additional commits viewable in <a href="https://github.com/rhysd/actionlint/compare/v1.6.26...v1.6.27">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.26&new-version=1.6.27)](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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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:55:00 +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#2335
No description provided.