[PR #1239] [MERGED] build(deps): bump github.com/rhysd/actionlint from 1.6.14 to 1.6.15 #1856

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

📋 Pull Request Information

Original PR: https://github.com/nektos/act/pull/1239
Author: @dependabot[bot]
Created: 7/4/2022
Status: Merged
Merged: 7/4/2022
Merged by: @mergify[bot]

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


📝 Commits (2)

  • 841714f build(deps): bump github.com/rhysd/actionlint from 1.6.14 to 1.6.15
  • 8209d97 Merge branch 'master' into dependabot/go_modules/github.com/rhysd/actionlint-1.6.15

📊 Changes

2 files changed (+3 additions, -3 deletions)

View changed files

📝 go.mod (+1 -1)
📝 go.sum (+2 -2)

📄 Description

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

Release notes

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

v1.6.15

  • Fix referring env context from env: at step level caused an error. env: at toplevel and job level cannot refer env context, but env: at step level can. (#158)
    on: push
    

    env:

    ERROR: 'env:' at toplevel cannot refer 'env' context

    ERROR1: ${{ env.PATH }}

    jobs: my_job: runs-on: ubuntu-latest env: # ERROR: 'env:' at job level cannot refer 'env' context ERROR2: ${{ env.PATH }} steps: - run: echo "$THIS_IS_OK" env: # OK: 'env:' at step level CAN refer 'env' context THIS_IS_OK: ${{ env.PATH }}

  • Docker image for linux/arm64 is now provided. It is useful for M1 Mac users. (#159, thanks @​politician)
  • Fix the download script did not respect the version specified via the first argument. (#162, thanks @​mateiidavid)
Changelog

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

v1.6.15 - 28 Jun 2022

  • Fix referring env context from env: at step level caused an error. env: at toplevel and job level cannot refer env context, but env: at step level can. (#158)
    on: push
    

    env:

    'env:' at toplevel cannot refer 'env' context

    ERROR1: ${{ env.PATH }}

    jobs: my_job: runs-on: ubuntu-latest env: # 'env:' at job level cannot refer 'env' context ERROR2: ${{ env.PATH }} steps: - run: echo "$BAR" env: # 'env:' at step level CAN refer 'env' context THIS_IS_OK: ${{ env.PATH }}

  • Docker image for linux/arm64 is now provided. It is useful for M1 Mac users. (#159, thanks @​politician)
  • Fix the download script did not respect the version specified via the first argument. (#162, thanks @​mateiidavid)

[Changes][v1.6.15]

Commits
  • 97ad72a bump up version to v1.6.15
  • 0e88c03 test env: at container: can refer env context
  • 323ceb4 fix env: at step level should be able to refer env context (#158)
  • ace2ef0 fix updating default version in download script by CI release workflow (#162)
  • f4e240b Merge pull request #162 from mateiidavid/matei/fix-install-script-override
  • 325cd96 Fix install script version override
  • 4df24b5 Merge pull request #159 from politician/patch-1
  • 8b86b0c Update Dockerfile
  • 99711d6 Add multi platform build
  • 96d0b49 update changelog for v1.6.14 changes
  • 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/1239 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 7/4/2022 **Status:** ✅ Merged **Merged:** 7/4/2022 **Merged by:** [@mergify[bot]](https://github.com/apps/mergify) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/rhysd/actionlint-1.6.15` --- ### 📝 Commits (2) - [`841714f`](https://github.com/nektos/act/commit/841714fbfd6ef3098723edd9e3c3eb701f5840df) build(deps): bump github.com/rhysd/actionlint from 1.6.14 to 1.6.15 - [`8209d97`](https://github.com/nektos/act/commit/8209d97a20d36e5e9fb18e69ba55a235d7700697) Merge branch 'master' into dependabot/go_modules/github.com/rhysd/actionlint-1.6.15 ### 📊 Changes **2 files changed** (+3 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+1 -1) 📝 `go.sum` (+2 -2) </details> ### 📄 Description Bumps [github.com/rhysd/actionlint](https://github.com/rhysd/actionlint) from 1.6.14 to 1.6.15. <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.15</h2> <ul> <li>Fix referring <code>env</code> context from <code>env:</code> at step level caused an error. <code>env:</code> at toplevel and job level cannot refer <code>env</code> context, but <code>env:</code> at step level can. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/158">#158</a>) <pre lang="yaml"><code>on: push <p>env:</p> <h1>ERROR: 'env:' at toplevel cannot refer 'env' context</h1> <p>ERROR1: ${{ env.PATH }}</p> <p>jobs: my_job: runs-on: ubuntu-latest env: # ERROR: 'env:' at job level cannot refer 'env' context ERROR2: ${{ env.PATH }} steps: - run: echo &quot;$THIS_IS_OK&quot; env: # OK: 'env:' at step level CAN refer 'env' context THIS_IS_OK: ${{ env.PATH }} </code></pre></p> </li> <li><a href="https://hub.docker.com/layers/rhysd/actionlint/1.6.15/images/sha256-f63ee59f1846abce86ca9de1d41a1fc22bc7148d14b788cb455a9594d83e73f7?context=repo">Docker image for linux/arm64</a> is now provided. It is useful for M1 Mac users. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/159">#159</a>, thanks <a href="https://github.com/politician"><code>@​politician</code></a>)</li> <li>Fix <a href="https://github.com/rhysd/actionlint/blob/main/scripts/download-actionlint.bash">the download script</a> did not respect the version specified via the first argument. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/162">#162</a>, thanks <a href="https://github.com/mateiidavid"><code>@​mateiidavid</code></a>)</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.15">v1.6.15</a> - 28 Jun 2022</h1> <ul> <li>Fix referring <code>env</code> context from <code>env:</code> at step level caused an error. <code>env:</code> at toplevel and job level cannot refer <code>env</code> context, but <code>env:</code> at step level can. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/158">#158</a>) <pre lang="yaml"><code>on: push <p>env:</p> <h1>'env:' at toplevel cannot refer 'env' context</h1> <p>ERROR1: ${{ env.PATH }}</p> <p>jobs: my_job: runs-on: ubuntu-latest env: # 'env:' at job level cannot refer 'env' context ERROR2: ${{ env.PATH }} steps: - run: echo &quot;$BAR&quot; env: # 'env:' at step level CAN refer 'env' context THIS_IS_OK: ${{ env.PATH }} </code></pre></p> </li> <li><a href="https://hub.docker.com/layers/rhysd/actionlint/1.6.15/images/sha256-f63ee59f1846abce86ca9de1d41a1fc22bc7148d14b788cb455a9594d83e73f7?context=repo">Docker image for linux/arm64</a> is now provided. It is useful for M1 Mac users. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/159">#159</a>, thanks <a href="https://github.com/politician"><code>@​politician</code></a>)</li> <li>Fix <a href="https://github.com/rhysd/actionlint/blob/main/scripts/download-actionlint.bash">the download script</a> did not respect the version specified via the first argument. (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/162">#162</a>, thanks <a href="https://github.com/mateiidavid"><code>@​mateiidavid</code></a>)</li> </ul> <p>[Changes][v1.6.15]</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/97ad72abf96ba516f4a49f2da567165eaebf7e5a"><code>97ad72a</code></a> bump up version to v1.6.15</li> <li><a href="https://github.com/rhysd/actionlint/commit/0e88c035d061a0b5842a7ebef70623f3d42df5e7"><code>0e88c03</code></a> test <code>env:</code> at <code>container:</code> can refer <code>env</code> context</li> <li><a href="https://github.com/rhysd/actionlint/commit/323ceb4094b29e6b3291aba36f9ca036466a7084"><code>323ceb4</code></a> fix <code>env:</code> at step level should be able to refer <code>env</code> context (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/158">#158</a>)</li> <li><a href="https://github.com/rhysd/actionlint/commit/ace2ef08627e4ecc68be9921c8e720b6a35f8ab6"><code>ace2ef0</code></a> fix updating default version in download script by CI release workflow (<a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/162">#162</a>)</li> <li><a href="https://github.com/rhysd/actionlint/commit/f4e240bf2c7f51c5821c3ae445b7842bde7e17fb"><code>f4e240b</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/162">#162</a> from mateiidavid/matei/fix-install-script-override</li> <li><a href="https://github.com/rhysd/actionlint/commit/325cd9615c285847e7b5cb2adcb138a7ac526136"><code>325cd96</code></a> Fix install script version override</li> <li><a href="https://github.com/rhysd/actionlint/commit/4df24b5ccf8961f924776df40bb5795e81181609"><code>4df24b5</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rhysd/actionlint/issues/159">#159</a> from politician/patch-1</li> <li><a href="https://github.com/rhysd/actionlint/commit/8b86b0cd91060c3123b3d302013010553ce7520f"><code>8b86b0c</code></a> Update Dockerfile</li> <li><a href="https://github.com/rhysd/actionlint/commit/99711d694255dfcb6035ba827053f112676215e2"><code>99711d6</code></a> Add multi platform build</li> <li><a href="https://github.com/rhysd/actionlint/commit/96d0b49390b000deae95ca319f13bcc37fcb1413"><code>96d0b49</code></a> update changelog for v1.6.14 changes</li> <li>Additional commits viewable in <a href="https://github.com/rhysd/actionlint/compare/v1.6.14...v1.6.15">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.14&new-version=1.6.15)](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:52:58 +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#1856
No description provided.