[PR #1574] [MERGED] build(deps): bump github.com/rhysd/actionlint from 1.6.22 to 1.6.23 #2010

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

📋 Pull Request Information

Original PR: https://github.com/nektos/act/pull/1574
Author: @dependabot[bot]
Created: 1/23/2023
Status: Merged
Merged: 1/23/2023
Merged by: @mergify[bot]

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


📝 Commits (2)

  • 5138d32 build(deps): bump github.com/rhysd/actionlint from 1.6.22 to 1.6.23
  • 77d836b Merge branch 'master' into dependabot/go_modules/github.com/rhysd/actionlint-1.6.23

📊 Changes

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

View changed files

📝 go.mod (+5 -6)
📝 go.sum (+8 -9)

📄 Description

Bumps github.com/rhysd/actionlint from 1.6.22 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
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]

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)

🔄 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/1574 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 1/23/2023 **Status:** ✅ Merged **Merged:** 1/23/2023 **Merged by:** [@mergify[bot]](https://github.com/apps/mergify) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/rhysd/actionlint-1.6.23` --- ### 📝 Commits (2) - [`5138d32`](https://github.com/nektos/act/commit/5138d328b0e215e4c641e1188d51a90d1edaaa4e) build(deps): bump github.com/rhysd/actionlint from 1.6.22 to 1.6.23 - [`77d836b`](https://github.com/nektos/act/commit/77d836b655b0d89a7b25ad7553a9fd39334058ad) Merge branch 'master' into dependabot/go_modules/github.com/rhysd/actionlint-1.6.23 ### 📊 Changes **2 files changed** (+13 additions, -15 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+5 -6) 📝 `go.sum` (+8 -9) </details> ### 📄 Description Bumps [github.com/rhysd/actionlint](https://github.com/rhysd/actionlint) from 1.6.22 to 1.6.23. <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.23</h2> <ul> <li>Fix using <a href="https://docs.github.com/en/actions/learn-github-actions/contexts#vars-context"><code>vars</code> context</a> causes 'undefined context' error. This context is for <a href="https://docs.github.com/en/actions/learn-github-actions/variables">'Variables' feature</a> which was recently added to GitHub Actions. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/260">#260</a>) <pre lang="yaml"><code>- name: Use variables run: | echo &quot;repository variable : ${{ vars.REPOSITORY_VAR }}&quot; echo &quot;organization variable : ${{ vars.ORGANIZATION_VAR }}&quot; echo &quot;overridden variable : ${{ vars.OVERRIDE_VAR }}&quot; echo &quot;variable from shell environment : $env_var&quot; </code></pre> </li> <li>Fix 'no property' error on accessing some <code>github</code> context's properties which were added recently. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/259">#259</a>)</li> <li>Update popular actions data set and add some new actions to it <ul> <li><a href="https://github.com/actions/dependency-review-action">actions/dependency-review-action</a></li> <li><a href="https://github.com/dtolnay/rust-toolchain">dtolnay/rust-toolchain</a></li> </ul> </li> <li>Playground is improved by making the right pane sticky. It is useful when many errors are reported. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/253">#253</a>, thanks <a href="https://github.com/ericcornelissen"><code>@​ericcornelissen</code></a>)</li> <li>Update Go modules dependencies and playground dependencies</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.23">v1.6.23</a> - 19 Jan 2023</h1> <ul> <li>Fix using <a href="https://docs.github.com/en/actions/learn-github-actions/contexts#vars-context"><code>vars</code> context</a> causes 'undefined context' error. This context is for <a href="https://docs.github.com/en/actions/learn-github-actions/variables">'Variables' feature</a> which was recently added to GitHub Actions. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/260">#260</a>) <pre lang="yaml"><code>- name: Use variables run: | echo &quot;repository variable : ${{ vars.REPOSITORY_VAR }}&quot; echo &quot;organization variable : ${{ vars.ORGANIZATION_VAR }}&quot; echo &quot;overridden variable : ${{ vars.OVERRIDE_VAR }}&quot; echo &quot;variable from shell environment : $env_var&quot; </code></pre> </li> <li>Fix 'no property' error on accessing some <code>github</code> context's properties which were added recently. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/259">#259</a>)</li> <li>Update popular actions data set and add some new actions to it <ul> <li><a href="https://github.com/actions/dependency-review-action">actions/dependency-review-action</a></li> <li><a href="https://github.com/dtolnay/rust-toolchain">dtolnay/rust-toolchain</a></li> </ul> </li> <li>Playground is improved by making the right pane sticky. It is useful when many errors are reported. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/253">#253</a>, thanks <a href="https://github.com/ericcornelissen"><code>@​ericcornelissen</code></a>)</li> <li>Update Go modules dependencies and playground dependencies</li> </ul> <p>[Changes][v1.6.23]</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/51803be108613182daa27af760ae117916b53e3f"><code>51803be</code></a> bump up version to v1.6.23</li> <li><a href="https://github.com/rhysd/actionlint/commit/ac7843816b4a32117654d15aa3aa52048e520c54"><code>ac78438</code></a> update golang.org/x/sys to v0.4.0</li> <li><a href="https://github.com/rhysd/actionlint/commit/576fd99faef549e6f3d39cab43f68bdcf7e16af3"><code>576fd99</code></a> add <code>vars</code> to global contexts (fix <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/259">#259</a>)</li> <li><a href="https://github.com/rhysd/actionlint/commit/837e7137b7b636444668fe56b76fff5bd9a9c226"><code>837e713</code></a> fix tests broken since <code>vars</code> was added to available contexts table</li> <li><a href="https://github.com/rhysd/actionlint/commit/deee3e21d6c2cf21bc3418823845e9344009743e"><code>deee3e2</code></a> update properties in contexts (fix <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/260">#260</a>)</li> <li><a href="https://github.com/rhysd/actionlint/commit/973916b693fe5f66e67e05844c4d326a616da23e"><code>973916b</code></a> update popular actions with some new actions</li> <li><a href="https://github.com/rhysd/actionlint/commit/d116f014b35063c14f91bd04b0cab7336a7d525e"><code>d116f01</code></a> add <code>vars</code> to context availability</li> <li><a href="https://github.com/rhysd/actionlint/commit/d0a37a7e7ee408096b5d8159a859f2af5fe0c7be"><code>d0a37a7</code></a> update playground dependencies</li> <li><a href="https://github.com/rhysd/actionlint/commit/0b9adcd7c3808d7c24d790065bda16a89fdf4d25"><code>0b9adcd</code></a> fix Wasm test was broken on Node.js v19 since <code>global.crypto</code> was stabilized</li> <li><a href="https://github.com/rhysd/actionlint/commit/3a2f2c755b6442ec7999b28dfd107e1bb9853389"><code>3a2f2c7</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/253">#253</a> from ericcornelissen/playground-sticky-right-pane</li> <li>Additional commits viewable in <a href="https://github.com/rhysd/actionlint/compare/v1.6.22...v1.6.23">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.22&new-version=1.6.23)](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:38 +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#2010
No description provided.