Skip to content

Bump github.com/rhysd/actionlint from 1.6.15 to 1.6.23 in /.ci/tools#541

Closed
dependabot[bot] wants to merge 150 commits intomainfrom
dependabot/go_modules/dot-ci/tools/github.com/rhysd/actionlint-1.6.23
Closed

Bump github.com/rhysd/actionlint from 1.6.15 to 1.6.23 in /.ci/tools#541
dependabot[bot] wants to merge 150 commits intomainfrom
dependabot/go_modules/dot-ci/tools/github.com/rhysd/actionlint-1.6.23

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jan 19, 2023

Bumps github.com/rhysd/actionlint from 1.6.15 to 1.6.23.

Release notes

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

v1.6.23

  • Fix using vars context causes 'undefined context' error. This context is for 'Variables' feature which was recently added to GitHub Actions. (#260)
    - name: Use variables
      run: |
        echo "repository variable : ${{ vars.REPOSITORY_VAR }}"
        echo "organization variable : ${{ vars.ORGANIZATION_VAR }}"
        echo "overridden variable : ${{ vars.OVERRIDE_VAR }}"
        echo "variable from shell environment : $env_var"
  • Fix 'no property' error on accessing some github context's properties which were added recently. (#259)
  • Update popular actions data set and add some new actions to it
  • Playground is improved by making the right pane sticky. It is useful when many errors are reported. (#253, thanks @​ericcornelissen)
  • Update Go modules dependencies and playground dependencies

v1.6.22

  • Detect deprecated workflow commands such as set-output or save-state and suggest the alternative. 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 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:

... (truncated)

Changelog

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

v1.6.23 - 19 Jan 2023

  • Fix using vars context causes 'undefined context' error. This context is for 'Variables' feature which was recently added to GitHub Actions. (#260)
    - name: Use variables
      run: |
        echo "repository variable : ${{ vars.REPOSITORY_VAR }}"
        echo "organization variable : ${{ vars.ORGANIZATION_VAR }}"
        echo "overridden variable : ${{ vars.OVERRIDE_VAR }}"
        echo "variable from shell environment : $env_var"
  • Fix 'no property' error on accessing some github context's properties which were added recently. (#259)
  • Update popular actions data set and add some new actions to it
  • Playground is improved by making the right pane sticky. It is useful when many errors are reported. (#253, thanks @​ericcornelissen)
  • Update Go modules dependencies and playground dependencies

[Changes][v1.6.23]

v1.6.22 - 01 Nov 2022

  • Detect deprecated workflow commands such as set-output or save-state and suggest the alternative. 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 inputs in workflow_call event.
    on:
      workflow_call:
        inputs:
          input1:
            type: string
            # ERROR: `input2` is not defined yet
            default: ${{ inputs.input2 }}
          input2:
            type: string

... (truncated)

Commits
  • 51803be bump up version to v1.6.23
  • ac78438 update golang.org/x/sys to v0.4.0
  • 576fd99 add vars to global contexts (fix #259)
  • 837e713 fix tests broken since vars was added to available contexts table
  • deee3e2 update properties in contexts (fix #260)
  • 973916b update popular actions with some new actions
  • d116f01 add vars to context availability
  • d0a37a7 update playground dependencies
  • 0b9adcd fix Wasm test was broken on Node.js v19 since global.crypto was stabilized
  • 3a2f2c7 Merge pull request #253 from ericcornelissen/playground-sticky-right-pane
  • 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 Jan 19, 2023
@github-actions
Copy link

Hey @dependabot[bot] 👋 Thank you very much for your contribution! At times, our maintainers need to make direct edits to pull requests in order to help get it ready to be merged. Your current settings do not allow maintainers to make such edits. To help facilitate this, update your pull request to allow such edits as described in GitHub's Allowing changes to a pull request branch created from a fork documentation. (If you're using a fork owned by an organization, your organization may not allow you to change this setting. If that is the case, let us know.)

@github-actions github-actions bot added linter needs-triage and removed dependencies Pull requests that update a dependency file labels Jan 19, 2023
@breathingdust breathingdust self-requested a review as a code owner May 7, 2025 15:18
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Oct 13, 2025

Superseded by #657.

@dependabot dependabot bot closed this Oct 13, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/dot-ci/tools/github.com/rhysd/actionlint-1.6.23 branch October 13, 2025 21:18
@github-actions
Copy link

I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Nov 13, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

go Pull requests that update Go code linter needs-triage

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants