openscientia / terraform-provider-atlassian

Terraform ATLASSIAN Provider
https://registry.terraform.io/providers/openscientia/atlassian/latest
Mozilla Public License 2.0
5 stars 2 forks source link

chore(deps): bump github.com/rhysd/actionlint from 1.6.21 to 1.6.22 in /tools #152

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps github.com/rhysd/actionlint from 1.6.21 to 1.6.22.

Release notes

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

v1.6.22

  • Detect deprecated workflow commands such as set-output or save-state. See the document for more details. (#234)
    # ERROR: This format of 'set-output' workflow command was deprecated
    - run: echo '::set-output name=foo::bar'
    
  • Fix that ${{ }} expression at on.workflow_call.inputs.<id>.default caused an error. (#235)
    on:
      workflow_call:
        inputs:
          project:
            type: string
            # OK: The default value is generated dynamically
            default: ${{ github.event.repository.name }}
    
  • Improve type of inputs context to grow gradually while checking default values of inputs in workflow_call event.
    on:
      workflow_call:
        inputs:
          input1:
            type: string
            # ERROR: `input2` is not defined yet
            default: ${{ inputs.input2 }}
          input2:
            type: string
            # OK: `input1` was already defined above
            default: ${{ inputs.input1 }}
    
  • Check types of default values of workflow call inputs even if ${{ }} expression is used.
    on:
      workflow_call:
        inputs:
          input1:
            type: boolean
          input2:
            type: number
            # ERROR: Boolean value cannot be assigned to number
            default: ${{ inputs.input1 }}
    
  • Fix the download script is broken since GHE server does not support the new set-output format yet. (#240)
  • Replace the deprecated set-output workflow command in our own workflows. (#239, thanks @​Mrtenz)
  • Popular actions data set was updated to the latest as usual.
Changelog

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

v1.6.22 - 01 Nov 2022

  • Detect deprecated workflow commands such as set-output or save-state. See the document for more details. (#234)
    # ERROR: This format of 'set-output' workflow command was deprecated
    - run: echo '::set-output name=foo::bar'
    
  • Fix that ${{ }} expression at on.workflow_call.inputs.<id>.default caused an error. (#235)
    on:
      workflow_call:
        inputs:
          project:
            type: string
            # OK: The default value is generated dynamically
            default: ${{ github.event.repository.name }}
    
  • Improve type of inputs context to grow gradually while checking default values of inputs in workflow_call event.
    on:
      workflow_call:
        inputs:
          input1:
            type: string
            # ERROR: `input2` is not defined yet
            default: ${{ inputs.input2 }}
          input2:
            type: string
            # OK: `input1` was already defined above
            default: ${{ inputs.input1 }}
    
  • Check types of default values of workflow call inputs even if ${{ }} expression is used.
    on:
      workflow_call:
        inputs:
          input1:
            type: boolean
          input2:
            type: number
            # ERROR: Boolean value cannot be assigned to number
            default: ${{ inputs.input1 }}
    
  • Fix the download script is broken since GHE server does not support the new set-output format yet. (#240)
  • Replace the deprecated set-output workflow command in our own workflows. (#239, thanks @​Mrtenz)
  • Popular actions data set was updated to the latest as usual.

[Changes][v1.6.22]

... (truncated)

Commits
  • 7fdc963 bump up version to v1.6.22
  • acc6e8c check type of ${{ }} expression in default value of inputs
  • 5656337 update inputs context type gradually for checking `on.workflow_call.inputs....
  • 89b5c30 fix ${{ }} is not considered when checking constant at `on.workflow_call.in...
  • 02831bf Merge pull request #241 from rhysd/ci/3349658425
  • fccefcb update generated files by go generate on CI
  • 56b0b2e better check to detect the new set-output command is supported
  • ab53b9f fix the download script is broken on GHE server
  • 43f6ff2 Merge branch 'deprecated-commands' (fix #234)
  • 8edc27f describe check for deprecated workflow commands in document
  • 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)