[PR #1321] [MERGED] build(deps): bump github.com/rhysd/actionlint from 1.6.16 to 1.6.17 #1882

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

📋 Pull Request Information

Original PR: https://github.com/nektos/act/pull/1321
Author: @dependabot[bot]
Created: 8/29/2022
Status: Merged
Merged: 8/29/2022
Merged by: @mergify[bot]

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


📝 Commits (1)

  • 01a129e build(deps): bump github.com/rhysd/actionlint from 1.6.16 to 1.6.17

📊 Changes

2 files changed (+15 additions, -14 deletions)

View changed files

📝 go.mod (+5 -5)
📝 go.sum (+10 -9)

📄 Description

Bumps github.com/rhysd/actionlint from 1.6.16 to 1.6.17.

Release notes

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

v1.6.17

  • Allow workflow calls are available in matrix jobs. See the official announcement for more details. (#197)
    jobs:
      ReuseableMatrixJobForDeployment:
        strategy:
          matrix:
            target: [dev, stage, prod]
        uses: octocat/octo-repo/.github/workflows/deployment.yml@main
        with:
          target: ${{ matrix.target }}
    
  • Allow nested workflow calls. See the official announcement for more details. (#201)
    on: workflow_call
    

    jobs: call-another-reusable: uses: octo-org/example-repo/.github/workflows/another-reusable.yml@v1

  • Fix job outputs should be passed to needs.*.outputs of only direct children. Until v1.6.16, they are passed to any downstream jobs. (#151)
    jobs:
      first:
        runs-on: ubuntu-latest
        outputs:
          first: 'output from first job'
        steps:
          - run: echo 'first'
    

    second: needs: [first] runs-on: ubuntu-latest outputs: second: 'output from second job' steps: - run: echo 'second'

    third: needs: [second] runs-on: ubuntu-latest steps: - run: echo '${{ toJSON(needs.second.outputs) }}' # ERROR: needs.first does not exist, but v1.6.16 reported no error - run: echo '${{ toJSON(needs.first.outputs) }}'

    When you need both needs.first and needs.second, add the both to needs:.

      third:
        needs: [first, second]
    

... (truncated)

Changelog

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

v1.6.17 - 28 Aug 2022

  • Workflow calls are available in matrix jobs. See the official announcement for more details. (#197)
    jobs:
      ReuseableMatrixJobForDeployment:
        strategy:
          matrix:
            target: [dev, stage, prod]
        uses: octocat/octo-repo/.github/workflows/deployment.yml@main
        with:
          target: ${{ matrix.target }}
    
  • Workflow calls can be nested. See the official announcement for more details. (#201)
    on: workflow_call
    

    jobs: call-another-reusable: uses: octo-org/example-repo/.github/workflows/another-reusable.yml@v1

  • Fix job outputs should be passed to needs.*.outputs of only direct children. Until v1.6.16, they are passed to any downstream jobs. (#151)
    jobs:
      first:
        runs-on: ubuntu-latest
        outputs:
          first: 'output from first job'
        steps:
          - run: echo 'first'
    

    second: needs: [first] runs-on: ubuntu-latest outputs: second: 'output from second job' steps: - run: echo 'second'

    third: needs: [second] runs-on: ubuntu-latest steps: - run: echo '${{ toJSON(needs.second.outputs) }}' # ERROR: needs.first does not exist, but v1.6.16 reported no error - run: echo '${{ toJSON(needs.first.outputs) }}'

    When you need both needs.first and needs.second, add the both to needs:.

      third:
    

... (truncated)

Commits
  • c9980ce bump up version to v1.6.17
  • 85862d7 use Go 1.19 by default on CI
  • a1c9bd5 fix working-directory is not available with uses: (fix #207)
  • b766843 do not count }} since it may appear in string literals (fix #205)
  • cfdbe9e improve error message on parsing single ${{ }}
  • d1ffd58 fix job outputs are only passed to children (fix #151)
  • 9703a84 Merge pull request #206 from rhysd/ci/2937615010
  • 7210c6c update generated files by go generate on CI
  • 0e1fc57 update playground dependencies
  • 8db3e64 now workflow calls can be nested (fix #201)
  • 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/1321 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/29/2022 **Status:** ✅ Merged **Merged:** 8/29/2022 **Merged by:** [@mergify[bot]](https://github.com/apps/mergify) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/rhysd/actionlint-1.6.17` --- ### 📝 Commits (1) - [`01a129e`](https://github.com/nektos/act/commit/01a129edbdf9a0b00a3fe0843f366c14c4d6aada) build(deps): bump github.com/rhysd/actionlint from 1.6.16 to 1.6.17 ### 📊 Changes **2 files changed** (+15 additions, -14 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+5 -5) 📝 `go.sum` (+10 -9) </details> ### 📄 Description Bumps [github.com/rhysd/actionlint](https://github.com/rhysd/actionlint) from 1.6.16 to 1.6.17. <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.17</h2> <ul> <li>Allow workflow calls are available in matrix jobs. See <a href="https://github.blog/changelog/2022-08-22-github-actions-improvements-to-reusable-workflows-2/">the official announcement</a> for more details. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/197">#197</a>) <pre lang="yaml"><code>jobs: ReuseableMatrixJobForDeployment: strategy: matrix: target: [dev, stage, prod] uses: octocat/octo-repo/.github/workflows/deployment.yml@main with: target: ${{ matrix.target }} </code></pre> </li> <li>Allow nested workflow calls. See <a href="https://github.blog/changelog/2022-08-22-github-actions-improvements-to-reusable-workflows-2/">the official announcement</a> for more details. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/201">#201</a>) <pre lang="yaml"><code>on: workflow_call <p>jobs: call-another-reusable: uses: octo-org/example-repo/.github/workflows/another-reusable.yml@v1 </code></pre></p> </li> <li>Fix job outputs should be passed to <code>needs.*.outputs</code> of only direct children. Until v1.6.16, they are passed to any downstream jobs. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/151">#151</a>) <pre lang="yaml"><code>jobs: first: runs-on: ubuntu-latest outputs: first: 'output from first job' steps: - run: echo 'first' <p>second: needs: [first] runs-on: ubuntu-latest outputs: second: 'output from second job' steps: - run: echo 'second'</p> <p>third: needs: [second] runs-on: ubuntu-latest steps: - run: echo '${{ toJSON(needs.second.outputs) }}' # ERROR: <code>needs.first</code> does not exist, but v1.6.16 reported no error - run: echo '${{ toJSON(needs.first.outputs) }}' </code></pre> When you need both <code>needs.first</code> and <code>needs.second</code>, add the both to <code>needs:</code>.</p> <pre lang="yaml"><code> third: needs: [first, second] </code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </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.17">v1.6.17</a> - 28 Aug 2022</h1> <ul> <li>Workflow calls are available in matrix jobs. See <a href="https://github.blog/changelog/2022-08-22-github-actions-improvements-to-reusable-workflows-2/">the official announcement</a> for more details. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/197">#197</a>) <pre lang="yaml"><code>jobs: ReuseableMatrixJobForDeployment: strategy: matrix: target: [dev, stage, prod] uses: octocat/octo-repo/.github/workflows/deployment.yml@main with: target: ${{ matrix.target }} </code></pre> </li> <li>Workflow calls can be nested. See <a href="https://github.blog/changelog/2022-08-22-github-actions-improvements-to-reusable-workflows-2/">the official announcement</a> for more details. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/201">#201</a>) <pre lang="yaml"><code>on: workflow_call <p>jobs: call-another-reusable: uses: octo-org/example-repo/.github/workflows/another-reusable.yml@v1 </code></pre></p> </li> <li>Fix job outputs should be passed to <code>needs.*.outputs</code> of only direct children. Until v1.6.16, they are passed to any downstream jobs. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/151">#151</a>) <pre lang="yaml"><code>jobs: first: runs-on: ubuntu-latest outputs: first: 'output from first job' steps: - run: echo 'first' <p>second: needs: [first] runs-on: ubuntu-latest outputs: second: 'output from second job' steps: - run: echo 'second'</p> <p>third: needs: [second] runs-on: ubuntu-latest steps: - run: echo '${{ toJSON(needs.second.outputs) }}' # ERROR: <code>needs.first</code> does not exist, but v1.6.16 reported no error - run: echo '${{ toJSON(needs.first.outputs) }}' </code></pre> When you need both <code>needs.first</code> and <code>needs.second</code>, add the both to <code>needs:</code>.</p> <pre lang="yaml"><code> third: </code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rhysd/actionlint/commit/c9980ce829707101766e3681ace6d67fa7fe5edc"><code>c9980ce</code></a> bump up version to v1.6.17</li> <li><a href="https://github.com/rhysd/actionlint/commit/85862d74d3df219cbcf8d8a5bef2f73683e90297"><code>85862d7</code></a> use Go 1.19 by default on CI</li> <li><a href="https://github.com/rhysd/actionlint/commit/a1c9bd567a950209ebdd437a193fecaa6ce3ebc9"><code>a1c9bd5</code></a> fix <code>working-directory</code> is not available with <code>uses:</code> (fix <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/207">#207</a>)</li> <li><a href="https://github.com/rhysd/actionlint/commit/b766843c17ce112bf7fafdaff2ef08db83dda8cd"><code>b766843</code></a> do not count <code>}}</code> since it may appear in string literals (fix <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/205">#205</a>)</li> <li><a href="https://github.com/rhysd/actionlint/commit/cfdbe9e3d571603cfaf272faf5b4e3d74fb0ff87"><code>cfdbe9e</code></a> improve error message on parsing single <code>${{ }}</code></li> <li><a href="https://github.com/rhysd/actionlint/commit/d1ffd58e16d8d79942e6e2facdbe6a2ef57b9a87"><code>d1ffd58</code></a> fix job outputs are only passed to children (fix <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/151">#151</a>)</li> <li><a href="https://github.com/rhysd/actionlint/commit/9703a848cfca11bafbd6cdcde239f9ee27dd659e"><code>9703a84</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/206">#206</a> from rhysd/ci/2937615010</li> <li><a href="https://github.com/rhysd/actionlint/commit/7210c6c5401d57cb0658b31e2373db90f7cf3629"><code>7210c6c</code></a> update generated files by <code>go generate</code> on CI</li> <li><a href="https://github.com/rhysd/actionlint/commit/0e1fc57f748c67b3add9914ad3719ba14da31a03"><code>0e1fc57</code></a> update playground dependencies</li> <li><a href="https://github.com/rhysd/actionlint/commit/8db3e649a4c42564aca95fb2625142ab1788f50b"><code>8db3e64</code></a> now workflow calls can be nested (fix <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/201">#201</a>)</li> <li>Additional commits viewable in <a href="https://github.com/rhysd/actionlint/compare/v1.6.16...v1.6.17">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.16&new-version=1.6.17)](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:04 +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#1882
No description provided.