[PR #1018] [MERGED] build(deps): bump github.com/rhysd/actionlint from 1.6.8 to 1.6.9 #1732

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

📋 Pull Request Information

Original PR: https://github.com/nektos/act/pull/1018
Author: @dependabot[bot]
Created: 2/28/2022
Status: Merged
Merged: 2/28/2022
Merged by: @mergify[bot]

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


📝 Commits (1)

  • 9203a00 build(deps): bump github.com/rhysd/actionlint from 1.6.8 to 1.6.9

📊 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.8 to 1.6.9.

Release notes

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

v1.6.9

  • Support runner.arch context value. (thanks @​shogo82148, #101)
    steps:
      - run: ./do_something_64bit.sh
        if: ${{ runner.arch == 'x64' }}
    
  • Support calling reusable workflows in local directories. (thanks @​jsok, #107)
    jobs:
      call-workflow-in-local-repo:
        uses: ./.github/workflows/useful_workflow.yml
    
  • Add a document to install actionlint via asdf version manager. (thanks @​crazy-matt, #99)
  • Fix using secrets.GITHUB_TOKEN caused a type error when some other secret is defined. (thanks @​mkj-is, #106)
  • Fix nil check is missing on parsing uses: step. (thanks @​shogo82148, #102)
  • Fix some documents including broken links. (thanks @​ohkinozomu, #105)
  • Update popular actions data set to the latest. More arguments are added to many actions. And a few actions had new major versions.
  • Update webhook payload data set to the latest. requested_action type was added to check_run hook. requested and rerequested types were removed from check_suite hook. updated type was removed from project hook.
Changelog

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

v1.6.9 - 24 Feb 2022

  • Support runner.arch context value. (thanks @​shogo82148, #101)
    steps:
      - run: ./do_something_64bit.sh
        if ${{ runner.arch == 'x64' }}
    
  • Support calling reusable workflows in local directories. (thanks @​jsok, #107)
    jobs:
      call-workflow-in-local-repo:
        uses: ./.github/workflows/useful_workflow.yml
    
  • Add a document to install actionlint via asdf version manager. (thanks @​crazy-matt, #99)
  • Fix using secrets.GITHUB_TOKEN caused a type error when some other secret is defined. (thanks @​mkj-is, #106)
  • Fix nil check is missing on parsing uses: step. (thanks @​shogo82148, #102)
  • Fix some documents including broken links. (thanks @​ohkinozomu, #105)
  • Update popular actions data set to the latest. More arguments are added to many actions. And a few actions had new major versions.
  • Update webhook payload data set to the latest. requested_action type was added to check_run hook. requested and rerequested types were removed from check_suite hook. updated type was removed from project hook.

[Changes][v1.6.9]

Commits
  • 752a552 Merge pull request #105 from ohkinozomu/fix-paths
  • 3246bb2 Merge pull request #99 from crazy-matt/chore/add-asdf-plugin-ref
  • a2a4bdd fix workflow_inputs_secrets_types example test fails
  • e7f4a5c improve error message on checking workflow call formats
  • 66f4c1d update popular actions data to the latest
  • 62628dc Merge pull request #107 from jsok/workflow-call-local
  • d2bab97 fix err/workflow_call_secrets test case randomly fails
  • 3843812 add unit test for #106
  • 0f7ca73 add test for #101
  • af27f8a Merge pull request #106 from mkj-is/fix/github-action-secret
  • 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/1018 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/28/2022 **Status:** ✅ Merged **Merged:** 2/28/2022 **Merged by:** [@mergify[bot]](https://github.com/apps/mergify) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/rhysd/actionlint-1.6.9` --- ### 📝 Commits (1) - [`9203a00`](https://github.com/nektos/act/commit/9203a00bfe1520483f67f6d4a22bc05f3c683c77) build(deps): bump github.com/rhysd/actionlint from 1.6.8 to 1.6.9 ### 📊 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.8 to 1.6.9. <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.9</h2> <ul> <li>Support <a href="https://docs.github.com/en/actions/learn-github-actions/contexts#runner-context"><code>runner.arch</code> context value</a>. (thanks <a href="https://github.com/shogo82148"><code>@​shogo82148</code></a>, <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/101">#101</a>) <pre lang="yaml"><code>steps: - run: ./do_something_64bit.sh if: ${{ runner.arch == 'x64' }} </code></pre> </li> <li>Support <a href="https://docs.github.com/en/actions/using-workflows/reusing-workflows#calling-a-reusable-workflow">calling reusable workflows in local directories</a>. (thanks <a href="https://github.com/jsok"><code>@​jsok</code></a>, <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/107">#107</a>) <pre lang="yaml"><code>jobs: call-workflow-in-local-repo: uses: ./.github/workflows/useful_workflow.yml </code></pre> </li> <li>Add <a href="https://github.com/rhysd/actionlint/blob/main/docs/install.md#asdf">a document</a> to install actionlint via <a href="https://asdf-vm.com/">asdf</a> version manager. (thanks <a href="https://github.com/crazy-matt"><code>@​crazy-matt</code></a>, <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/99">#99</a>)</li> <li>Fix using <code>secrets.GITHUB_TOKEN</code> caused a type error when some other secret is defined. (thanks <a href="https://github.com/mkj-is"><code>@​mkj-is</code></a>, <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/106">#106</a>)</li> <li>Fix nil check is missing on parsing <code>uses:</code> step. (thanks <a href="https://github.com/shogo82148"><code>@​shogo82148</code></a>, <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/102">#102</a>)</li> <li>Fix some documents including broken links. (thanks <a href="https://github.com/ohkinozomu"><code>@​ohkinozomu</code></a>, <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/105">#105</a>)</li> <li>Update popular actions data set to the latest. More arguments are added to many actions. And a few actions had new major versions.</li> <li>Update webhook payload data set to the latest. <code>requested_action</code> type was added to <code>check_run</code> hook. <code>requested</code> and <code>rerequested</code> types were removed from <code>check_suite</code> hook. <code>updated</code> type was removed from <code>project</code> hook.</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.9">v1.6.9</a> - 24 Feb 2022</h1> <ul> <li>Support <a href="https://docs.github.com/en/actions/learn-github-actions/contexts#runner-context"><code>runner.arch</code> context value</a>. (thanks <a href="https://github.com/shogo82148"><code>@​shogo82148</code></a>, <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/101">#101</a>) <pre lang="yaml"><code>steps: - run: ./do_something_64bit.sh if ${{ runner.arch == 'x64' }} </code></pre> </li> <li>Support <a href="https://docs.github.com/en/actions/using-workflows/reusing-workflows#calling-a-reusable-workflow">calling reusable workflows in local directories</a>. (thanks <a href="https://github.com/jsok"><code>@​jsok</code></a>, <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/107">#107</a>) <pre lang="yaml"><code>jobs: call-workflow-in-local-repo: uses: ./.github/workflows/useful_workflow.yml </code></pre> </li> <li>Add <a href="https://github.com/rhysd/actionlint/blob/main/docs/install.md#asdf">a document</a> to install actionlint via <a href="https://asdf-vm.com/">asdf</a> version manager. (thanks <a href="https://github.com/crazy-matt"><code>@​crazy-matt</code></a>, <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/99">#99</a>)</li> <li>Fix using <code>secrets.GITHUB_TOKEN</code> caused a type error when some other secret is defined. (thanks <a href="https://github.com/mkj-is"><code>@​mkj-is</code></a>, <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/106">#106</a>)</li> <li>Fix nil check is missing on parsing <code>uses:</code> step. (thanks <a href="https://github.com/shogo82148"><code>@​shogo82148</code></a>, <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/102">#102</a>)</li> <li>Fix some documents including broken links. (thanks <a href="https://github.com/ohkinozomu"><code>@​ohkinozomu</code></a>, <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/105">#105</a>)</li> <li>Update popular actions data set to the latest. More arguments are added to many actions. And a few actions had new major versions.</li> <li>Update webhook payload data set to the latest. <code>requested_action</code> type was added to <code>check_run</code> hook. <code>requested</code> and <code>rerequested</code> types were removed from <code>check_suite</code> hook. <code>updated</code> type was removed from <code>project</code> hook.</li> </ul> <p>[Changes][v1.6.9]</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/752a552b9de238dd731ea80ab0f5bda9129db552"><code>752a552</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/105">#105</a> from ohkinozomu/fix-paths</li> <li><a href="https://github.com/rhysd/actionlint/commit/3246bb2540a9e1717536baed1fd7915708722ae9"><code>3246bb2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/99">#99</a> from crazy-matt/chore/add-asdf-plugin-ref</li> <li><a href="https://github.com/rhysd/actionlint/commit/a2a4bdd4429f3debe5e15cbc50d661bb2a63a7cd"><code>a2a4bdd</code></a> fix workflow_inputs_secrets_types example test fails</li> <li><a href="https://github.com/rhysd/actionlint/commit/e7f4a5c793de71c4441ed7613384dfe00aac6e28"><code>e7f4a5c</code></a> improve error message on checking workflow call formats</li> <li><a href="https://github.com/rhysd/actionlint/commit/66f4c1d976bbfc99cd22658ab8aae519c32e97d1"><code>66f4c1d</code></a> update popular actions data to the latest</li> <li><a href="https://github.com/rhysd/actionlint/commit/62628dc7d6d1519f41d5a5b91e9a3c2c46a9d318"><code>62628dc</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/107">#107</a> from jsok/workflow-call-local</li> <li><a href="https://github.com/rhysd/actionlint/commit/d2bab97bcd7c4efdbb5a4e783ab4c1fd186eaad2"><code>d2bab97</code></a> fix err/workflow_call_secrets test case randomly fails</li> <li><a href="https://github.com/rhysd/actionlint/commit/3843812dcbd46c61ac50608de24a06de671854f4"><code>3843812</code></a> add unit test for <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/106">#106</a></li> <li><a href="https://github.com/rhysd/actionlint/commit/0f7ca738484b0a1e230277a5fcb349cd590fcdba"><code>0f7ca73</code></a> add test for <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/101">#101</a></li> <li><a href="https://github.com/rhysd/actionlint/commit/af27f8a7da19fe269110a9b6c23742af4d850d41"><code>af27f8a</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/106">#106</a> from mkj-is/fix/github-action-secret</li> <li>Additional commits viewable in <a href="https://github.com/rhysd/actionlint/compare/v1.6.8...v1.6.9">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.8&new-version=1.6.9)](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:26 +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#1732
No description provided.