Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 Bump github.com/rhysd/actionlint from 1.6.16 to 1.6.17 #189

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 29, 2022

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: path/to/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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Aug 29, 2022
@netlify
Copy link

netlify bot commented Aug 29, 2022

Deploy Preview for ossf-scorecard canceled.

Name Link
🔨 Latest commit 4e7e759
🔍 Latest deploy log https://app.netlify.com/sites/ossf-scorecard/deploys/6322464266e4d600089cb722

@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/rhysd/actionlint-1.6.17 branch 3 times, most recently from f654844 to a1d5f1f Compare September 1, 2022 14:36
@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/rhysd/actionlint-1.6.17 branch 4 times, most recently from 07f9a85 to 11ece02 Compare September 14, 2022 19:56
Bumps [github.com/rhysd/actionlint](https://github.com/rhysd/actionlint) from 1.6.16 to 1.6.17.
- [Release notes](https://github.com/rhysd/actionlint/releases)
- [Changelog](https://github.com/rhysd/actionlint/blob/main/CHANGELOG.md)
- [Commits](rhysd/actionlint@v1.6.16...v1.6.17)

---
updated-dependencies:
- dependency-name: github.com/rhysd/actionlint
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/rhysd/actionlint-1.6.17 branch from 11ece02 to c1b2c84 Compare September 14, 2022 19:58
@naveensrinivasan naveensrinivasan enabled auto-merge (squash) September 14, 2022 21:23
@naveensrinivasan naveensrinivasan merged commit d33b500 into main Sep 14, 2022
@naveensrinivasan naveensrinivasan deleted the dependabot/go_modules/github.com/rhysd/actionlint-1.6.17 branch September 14, 2022 21:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants