[PR #2527] [MERGED] build(deps): bump github.com/rhysd/actionlint from 1.7.3 to 1.7.4 #2479

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

📋 Pull Request Information

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

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


📝 Commits (1)

  • 6271264 build(deps): bump github.com/rhysd/actionlint from 1.7.3 to 1.7.4

📊 Changes

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

View changed files

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

📄 Description

Bumps github.com/rhysd/actionlint from 1.7.3 to 1.7.4.

Release notes

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

v1.7.4

  • Disallow the usage of popular actions that run on node16 runner. The node16 runner will reach the end of life on November 12.
    • In case of the error, please update your actions to the latest version so that they run on the latest node20 runner.
    • If you're using self-hosted runner and you cannot upgrade your runner to node20 soon, please consider to ignore the error by the paths configuration described below.
  • Provide the configuration for ignoring errors by regular expressions in actionlint.yml (or actionlint.yaml). Please see the document for more details. (#217, #342)
    • The paths is a mapping from the file path glob pattern to the corresponding configuration. The ignore configuration is a list of regular expressions to match error messages (similar to the -ignore command line option).
      paths:
        # This pattern matches any YAML file under the '.github/workflows/' directory.
        .github/workflows/**/*.yaml:
          ignore:
            # Ignore the specific error from shellcheck
            - 'shellcheck reported issue in this script: SC2086:.+'
        # This pattern only matches '.github/workflows/release.yaml' file.
        .github/workflows/release.yaml:
          ignore:
            # Ignore errors from the old runner check. This may be useful for (outdated) self-hosted runner environment.
            - 'the runner of ".+" action is too old to run on GitHub Actions'
      
    • This configuration was not implemented initially because I wanted to keep the configuration as minimal as possible. However, due to several requests for it, the configuration has now been added.
  • Untrusted inputs check is safely skipped inside specific function calls. (#459, thanks @​IlyaGulya)
    • For example, the following step contains the untrusted input github.head_ref, but it is safe because it's passed to the contains() argument.
      - run: echo "is_release_branch=${{ contains(github.head_ref, 'release') }}" >> "$GITHUB_OUTPUT"
      
    • For more details, please read the rule document.
  • Recognize gcr.io and gcr.dev as the correct container registry hosts. (#463, thanks @​takaidohigasi)
    • Note that it is recommended explicitly specifying the scheme like docker://gcr.io/....
  • Remove macos-x.0 runner labels which are no longer available. (#452)
  • Disable shellcheck SC2043 rule because it can cause false positives on checking run:. (#355)
  • Fix the error message was not deterministic when detecting cycles in needs dependencies.
  • Fix the check for format() function was not applied when the function name contains upper case like Format(). Note that function names in ${{ }} placeholders are case-insensitive.
  • Update the popular actions data set to the latest.
  • Add actions/cache/save and actions/cache/restore to the popular actions data set.
  • Links in the README.md now point to the document of the latest version tag instead of HEAD of main branch.
  • Add Linter.LintStdin method dedicated to linting STDIN instead of handling STDIN in Command.
  • (Dev) Add new check-checks script to maintain the 'Checks' document. It automatically updates the outputs and playground links for example inputs in the document. It also checks the document is up-to-date on CI. Please read the document for more details.

Documentation

Changelog

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

v1.7.4 - 2024-11-04

  • Disallow the usage of popular actions that run on node16 runner. The node16 runner will reach the end of life on November 12.
    • In case of the error, please update your actions to the latest version so that they run on the latest node20 runner.
    • If you're using self-hosted runner and you cannot upgrade your runner to node20 soon, please consider to ignore the error by the paths configuration described below.
  • Provide the configuration for ignoring errors by regular expressions in actionlint.yml (or actionlint.yaml). Please see the document for more details. (#217, #342)
    • The paths is a mapping from the file path glob pattern to the corresponding configuration. The ignore configuration is a list of regular expressions to match error messages (similar to the -ignore command line option).
      paths:
        # This pattern matches any YAML file under the '.github/workflows/' directory.
        .github/workflows/**/*.yaml:
          ignore:
            # Ignore the specific error from shellcheck
            - 'shellcheck reported issue in this script: SC2086:.+'
        # This pattern only matches '.github/workflows/release.yaml' file.
        .github/workflows/self-hosted.yaml:
          ignore:
            # Ignore errors from the old runner check. This may be useful for (outdated) self-hosted runner environment.
            - 'the runner of ".+" action is too old to run on GitHub Actions'
      
    • This configuration was not implemented initially because I wanted to keep the configuration as minimal as possible. However, due to several requests for it, the configuration has now been added.
  • Untrusted inputs check is safely skipped inside specific function calls. (#459, thanks @​IlyaGulya)
    • For example, the following step contains the untrusted input github.head_ref, but it is safe because it's passed to the contains() argument.
      - run: echo "is_release_branch=${{ contains(github.head_ref, 'release') }}" >> "$GITHUB_OUTPUT"
      
    • For more details, please read the rule document.
  • Recognize gcr.io and gcr.dev as the correct container registry hosts. (#463, thanks @​takaidohigasi)
    • Note that it is recommended explicitly specifying the scheme like docker://gcr.io/....
  • Remove macos-x.0 runner labels which are no longer available. (#452)
  • Disable shellcheck SC2043 rule because it can cause false positives on checking run:. (#355)
  • Fix the error message was not deterministic when detecting cycles in needs dependencies.
  • Fix the check for format() function was not applied when the function name contains upper case like Format(). Note that function names in ${{ }} placeholders are case-insensitive.
  • Update the popular actions data set to the latest.
  • Add actions/cache/save and actions/cache/restore to the popular actions data set.
  • Links in the README.md now point to the document of the latest version tag instead of HEAD of main branch.
  • Add Linter.LintStdin method dedicated to linting STDIN instead of handling STDIN in Command.
  • (Dev) Add new check-checks script to maintain the 'Checks' document. It automatically updates the outputs and playground links for example inputs in the document. It also checks the document is up-to-date on CI. Please read the document for more details.

Documentation

[Changes][v1.7.4]

Commits
  • 5db9d9c bump up version to v1.7.4
  • 416f0b3 check all before git push
  • b85cb82 do not run go generate on checks in pre-push hook
  • e09485d fix generate-popular-actions to read/write outdated actions in JSONL
  • 679440f add actions/cache/save and actions/cache/restore to popular actions
  • 799bea3 fall back to . when os.Getwd returns an error
  • 0c0a521 Merge branch 'paths-config' (fix #342, fix #217)
  • c7a09e0 update readme document to link to the latest stable version of docs
  • c270d66 test detecting config file already existing before generating new one
  • a93bb53 use cwd when given path is empty on LintRepository and GenerateDefaultConfig
  • 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/2527 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/11/2024 **Status:** ✅ Merged **Merged:** 11/11/2024 **Merged by:** [@mergify[bot]](https://github.com/apps/mergify) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/rhysd/actionlint-1.7.4` --- ### 📝 Commits (1) - [`6271264`](https://github.com/nektos/act/commit/62712645a84d7a93524a985a3341299d58a73aa1) build(deps): bump github.com/rhysd/actionlint from 1.7.3 to 1.7.4 ### 📊 Changes **2 files changed** (+6 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+2 -1) 📝 `go.sum` (+4 -2) </details> ### 📄 Description Bumps [github.com/rhysd/actionlint](https://github.com/rhysd/actionlint) from 1.7.3 to 1.7.4. <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.7.4</h2> <ul> <li>Disallow the usage of popular actions that run on <code>node16</code> runner. The <code>node16</code> runner <a href="https://github.blog/changelog/2024-09-25-end-of-life-for-actions-node16/">will reach the end of life on November 12</a>. <ul> <li>In case of the error, please update your actions to the latest version so that they run on the latest <code>node20</code> runner.</li> <li>If you're using self-hosted runner and you cannot upgrade your runner to <code>node20</code> soon, please consider to ignore the error by the <code>paths</code> configuration described below.</li> </ul> </li> <li>Provide the configuration for ignoring errors by regular expressions in <code>actionlint.yml</code> (or <code>actionlint.yaml</code>). Please see the <a href="https://github.com/rhysd/actionlint/blob/v1.7.4/docs/config.md">document</a> for more details. (<a href="https://redirect.github.com/rhysd/actionlint/issues/217">#217</a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/342">#342</a>) <ul> <li>The <code>paths</code> is a mapping from the file path glob pattern to the corresponding configuration. The <code>ignore</code> configuration is a list of regular expressions to match error messages (similar to the <code>-ignore</code> command line option). <pre lang="yaml"><code>paths: # This pattern matches any YAML file under the '.github/workflows/' directory. .github/workflows/**/*.yaml: ignore: # Ignore the specific error from shellcheck - 'shellcheck reported issue in this script: SC2086:.+' # This pattern only matches '.github/workflows/release.yaml' file. .github/workflows/release.yaml: ignore: # Ignore errors from the old runner check. This may be useful for (outdated) self-hosted runner environment. - 'the runner of &quot;.+&quot; action is too old to run on GitHub Actions' </code></pre> </li> <li>This configuration was not implemented initially because I wanted to keep the configuration as minimal as possible. However, due to several requests for it, the configuration has now been added.</li> </ul> </li> <li>Untrusted inputs check is safely skipped inside specific function calls. (<a href="https://redirect.github.com/rhysd/actionlint/issues/459">#459</a>, thanks <a href="https://github.com/IlyaGulya"><code>@​IlyaGulya</code></a>) <ul> <li>For example, the following step contains the untrusted input <code>github.head_ref</code>, but it is safe because it's passed to the <code>contains()</code> argument. <pre lang="yaml"><code>- run: echo &quot;is_release_branch=${{ contains(github.head_ref, 'release') }}&quot; &gt;&gt; &quot;$GITHUB_OUTPUT&quot; </code></pre> </li> <li>For more details, please read the <a href="https://github.com/rhysd/actionlint/blob/v1.7.4/docs/checks.md#untrusted-inputs">rule document</a>.</li> </ul> </li> <li>Recognize <code>gcr.io</code> and <code>gcr.dev</code> as the correct container registry hosts. (<a href="https://redirect.github.com/rhysd/actionlint/issues/463">#463</a>, thanks <a href="https://github.com/takaidohigasi"><code>@​takaidohigasi</code></a>) <ul> <li>Note that it is recommended explicitly specifying the scheme like <code>docker://gcr.io/...</code>.</li> </ul> </li> <li>Remove <code>macos-x.0</code> runner labels which are no longer available. (<a href="https://redirect.github.com/rhysd/actionlint/issues/452">#452</a>)</li> <li>Disable shellcheck <a href="https://www.shellcheck.net/wiki/SC2043"><code>SC2043</code></a> rule because it can cause false positives on checking <code>run:</code>. (<a href="https://redirect.github.com/rhysd/actionlint/issues/355">#355</a>) <ul> <li>The <a href="https://github.com/rhysd/actionlint/blob/v1.7.4/docs/checks.md#check-shellcheck-integ">rule document</a> was updated as well. (<a href="https://redirect.github.com/rhysd/actionlint/issues/466">#466</a>, thanks <a href="https://github.com/risu729"><code>@​risu729</code></a>)</li> </ul> </li> <li>Fix the error message was not deterministic when detecting cycles in <code>needs</code> dependencies.</li> <li>Fix the check for <code>format()</code> function was not applied when the function name contains upper case like <code>Format()</code>. Note that function names in <code>${{ }}</code> placeholders are case-insensitive.</li> <li>Update the popular actions data set to the latest. <ul> <li>This includes the <a href="https://redirect.github.com/actions/checkout/pull/1180">new <code>ref</code> and <code>commit</code> outputs</a> of <code>actions/checkout</code>.</li> </ul> </li> <li>Add <a href="https://github.com/actions/cache/tree/main/save"><code>actions/cache/save</code></a> and <a href="https://github.com/actions/cache/tree/main/restore"><code>actions/cache/restore</code></a> to the popular actions data set.</li> <li>Links in the <a href="https://github.com/rhysd/actionlint/blob/main/README.md">README.md</a> now point to the document of the latest version tag instead of HEAD of <code>main</code> branch.</li> <li>Add <a href="https://pkg.go.dev/github.com/rhysd/actionlint#Linter.LintStdin"><code>Linter.LintStdin</code></a> method dedicated to linting STDIN instead of handling STDIN in <code>Command</code>.</li> <li>(Dev) Add new <a href="https://github.com/rhysd/actionlint/tree/main/scripts/check-checks"><code>check-checks</code> script</a> to maintain the <a href="https://github.com/rhysd/actionlint/blob/main/docs/checks.md">'Checks' document</a>. It automatically updates the outputs and playground links for example inputs in the document. It also checks the document is up-to-date on CI. Please read the <a href="https://github.com/rhysd/actionlint/blob/main/scripts/check-checks/README.md">document</a> for more details.</li> </ul> <p><a href="https://github.com/rhysd/actionlint/tree/v1.7.4/docs">Documentation</a></p> </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.7.4">v1.7.4</a> - 2024-11-04</h1> <ul> <li>Disallow the usage of popular actions that run on <code>node16</code> runner. The <code>node16</code> runner <a href="https://github.blog/changelog/2024-09-25-end-of-life-for-actions-node16/">will reach the end of life on November 12</a>. <ul> <li>In case of the error, please update your actions to the latest version so that they run on the latest <code>node20</code> runner.</li> <li>If you're using self-hosted runner and you cannot upgrade your runner to <code>node20</code> soon, please consider to ignore the error by the <code>paths</code> configuration described below.</li> </ul> </li> <li>Provide the configuration for ignoring errors by regular expressions in <code>actionlint.yml</code> (or <code>actionlint.yaml</code>). Please see the <a href="https://github.com/rhysd/actionlint/blob/v1.7.4/docs/config.md">document</a> for more details. (<a href="https://redirect.github.com/rhysd/actionlint/issues/217">#217</a>, <a href="https://redirect.github.com/rhysd/actionlint/issues/342">#342</a>) <ul> <li>The <code>paths</code> is a mapping from the file path glob pattern to the corresponding configuration. The <code>ignore</code> configuration is a list of regular expressions to match error messages (similar to the <code>-ignore</code> command line option). <pre lang="yaml"><code>paths: # This pattern matches any YAML file under the '.github/workflows/' directory. .github/workflows/**/*.yaml: ignore: # Ignore the specific error from shellcheck - 'shellcheck reported issue in this script: SC2086:.+' # This pattern only matches '.github/workflows/release.yaml' file. .github/workflows/self-hosted.yaml: ignore: # Ignore errors from the old runner check. This may be useful for (outdated) self-hosted runner environment. - 'the runner of &quot;.+&quot; action is too old to run on GitHub Actions' </code></pre> </li> <li>This configuration was not implemented initially because I wanted to keep the configuration as minimal as possible. However, due to several requests for it, the configuration has now been added.</li> </ul> </li> <li>Untrusted inputs check is safely skipped inside specific function calls. (<a href="https://redirect.github.com/rhysd/actionlint/issues/459">#459</a>, thanks <a href="https://github.com/IlyaGulya"><code>@​IlyaGulya</code></a>) <ul> <li>For example, the following step contains the untrusted input <code>github.head_ref</code>, but it is safe because it's passed to the <code>contains()</code> argument. <pre lang="yaml"><code>- run: echo &quot;is_release_branch=${{ contains(github.head_ref, 'release') }}&quot; &gt;&gt; &quot;$GITHUB_OUTPUT&quot; </code></pre> </li> <li>For more details, please read the <a href="https://github.com/rhysd/actionlint/blob/v1.7.4/docs/checks.md#untrusted-inputs">rule document</a>.</li> </ul> </li> <li>Recognize <code>gcr.io</code> and <code>gcr.dev</code> as the correct container registry hosts. (<a href="https://redirect.github.com/rhysd/actionlint/issues/463">#463</a>, thanks <a href="https://github.com/takaidohigasi"><code>@​takaidohigasi</code></a>) <ul> <li>Note that it is recommended explicitly specifying the scheme like <code>docker://gcr.io/...</code>.</li> </ul> </li> <li>Remove <code>macos-x.0</code> runner labels which are no longer available. (<a href="https://redirect.github.com/rhysd/actionlint/issues/452">#452</a>)</li> <li>Disable shellcheck <a href="https://www.shellcheck.net/wiki/SC2043"><code>SC2043</code></a> rule because it can cause false positives on checking <code>run:</code>. (<a href="https://redirect.github.com/rhysd/actionlint/issues/355">#355</a>) <ul> <li>The <a href="https://github.com/rhysd/actionlint/blob/v1.7.4/docs/checks.md#check-shellcheck-integ">rule document</a> was updated as well. (<a href="https://redirect.github.com/rhysd/actionlint/issues/466">#466</a>, thanks <a href="https://github.com/risu729"><code>@​risu729</code></a>)</li> </ul> </li> <li>Fix the error message was not deterministic when detecting cycles in <code>needs</code> dependencies.</li> <li>Fix the check for <code>format()</code> function was not applied when the function name contains upper case like <code>Format()</code>. Note that function names in <code>${{ }}</code> placeholders are case-insensitive.</li> <li>Update the popular actions data set to the latest. <ul> <li>This includes the <a href="https://redirect.github.com/actions/checkout/pull/1180">new <code>ref</code> and <code>commit</code> outputs</a> of <code>actions/checkout</code>.</li> </ul> </li> <li>Add <a href="https://github.com/actions/cache/tree/main/save"><code>actions/cache/save</code></a> and <a href="https://github.com/actions/cache/tree/main/restore"><code>actions/cache/restore</code></a> to the popular actions data set.</li> <li>Links in the <a href="https://github.com/rhysd/actionlint/blob/main/README.md">README.md</a> now point to the document of the latest version tag instead of HEAD of <code>main</code> branch.</li> <li>Add <a href="https://pkg.go.dev/github.com/rhysd/actionlint#Linter.LintStdin"><code>Linter.LintStdin</code></a> method dedicated to linting STDIN instead of handling STDIN in <code>Command</code>.</li> <li>(Dev) Add new <a href="https://github.com/rhysd/actionlint/tree/main/scripts/check-checks"><code>check-checks</code> script</a> to maintain the <a href="https://github.com/rhysd/actionlint/blob/main/docs/checks.md">'Checks' document</a>. It automatically updates the outputs and playground links for example inputs in the document. It also checks the document is up-to-date on CI. Please read the <a href="https://github.com/rhysd/actionlint/blob/main/scripts/check-checks/README.md">document</a> for more details.</li> </ul> <p><a href="https://github.com/rhysd/actionlint/tree/v1.7.4/docs">Documentation</a></p> <p>[Changes][v1.7.4]</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/5db9d9cde2f3deb5035dea3e45f0a9fff2f29448"><code>5db9d9c</code></a> bump up version to v1.7.4</li> <li><a href="https://github.com/rhysd/actionlint/commit/416f0b3d78b5ee503d6118a7b01dce8264613725"><code>416f0b3</code></a> check all before <code>git push</code></li> <li><a href="https://github.com/rhysd/actionlint/commit/b85cb82d2ef1772c39f195d7d436a561049d1350"><code>b85cb82</code></a> do not run <code>go generate</code> on checks in <code>pre-push</code> hook</li> <li><a href="https://github.com/rhysd/actionlint/commit/e09485df0767ab626188c44fd19a8094e2ae69aa"><code>e09485d</code></a> fix generate-popular-actions to read/write outdated actions in JSONL</li> <li><a href="https://github.com/rhysd/actionlint/commit/679440fe39f2ff5d7c756b313897f0b4f1eae7ae"><code>679440f</code></a> add <code>actions/cache/save</code> and <code>actions/cache/restore</code> to popular actions</li> <li><a href="https://github.com/rhysd/actionlint/commit/799bea3005ffe43c0ea4f84a240fb974cfde8b6a"><code>799bea3</code></a> fall back to <code>.</code> when <code>os.Getwd</code> returns an error</li> <li><a href="https://github.com/rhysd/actionlint/commit/0c0a521e3d97d935d0e21ad51b3bf337c2328130"><code>0c0a521</code></a> Merge branch 'paths-config' (fix <a href="https://redirect.github.com/rhysd/actionlint/issues/342">#342</a>, fix <a href="https://redirect.github.com/rhysd/actionlint/issues/217">#217</a>)</li> <li><a href="https://github.com/rhysd/actionlint/commit/c7a09e0ec1f2f7b5aae4627ae7962cbe19b601f6"><code>c7a09e0</code></a> update readme document to link to the latest stable version of docs</li> <li><a href="https://github.com/rhysd/actionlint/commit/c270d661e93938c3cef9c5f7e252151aed6a68a4"><code>c270d66</code></a> test detecting config file already existing before generating new one</li> <li><a href="https://github.com/rhysd/actionlint/commit/a93bb53d62486f8e24a0cb499c9dcd4b3c9d4813"><code>a93bb53</code></a> use cwd when given path is empty on <code>LintRepository</code> and <code>GenerateDefaultConfig</code></li> <li>Additional commits viewable in <a href="https://github.com/rhysd/actionlint/compare/v1.7.3...v1.7.4">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.7.3&new-version=1.7.4)](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:37 +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#2479
No description provided.