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

build(deps): bump github.com/rhysd/actionlint from 1.6.26 to 1.6.27 #2228

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 26, 2024

Bumps github.com/rhysd/actionlint from 1.6.26 to 1.6.27.

Release notes

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

v1.6.27

  • Add macOS 14 runner labels for Apple Silicon support. The following labels are added. (thanks @​harryzcy, #392)
    • macos-14
    • macos-14-xlarge
    • macos-14-large
  • Remove ubuntu-18.04 runner label from runners list since it is no longer supported. (#363)
  • Allow glob patterns in self-hosted-runner.labels configuration. For example, the following configuration defines any runner labels prefixed with private-linux-. (thanks @​kishaningithub, #378)
    self-hosted-runner:
        labels:
          - private-linux-*
  • Fix a race condition bug when -format option is used for linting multiple workflow files. Thanks @​ReinAchten-TomTom for your help on the investigation. (#370)
  • Fix a race condition due to conflicts between some goroutine which starts to run shellcheck process and other goroutine which starts to wait until all processes finish.
  • The popular actions data set was updated to the latest and the following actions were newly added. (thanks @​jmarshall, #380)
    • google-github-actions/auth
    • google-github-actions/get-secretmanager-secrets
    • google-github-actions/setup-gcloud
    • google-github-actions/upload-cloud-storage
    • pulumi/actions
    • pypa/gh-action-pypi-publish
  • Add support for larger runner labels. The following labels are added. (thanks @​therealdwright, #371)
    • windows-latest-8-cores
    • ubuntu-latest-4-cores
    • ubuntu-latest-8-cores
    • ubuntu-latest-16-cores
  • The following WebHook types are supported for pull_request event.
    • enqueued
    • dequeued
    • milestoned
    • demilestoned
  • Explain how to control shellckeck behavior in the shellcheck rule document. Use SHELLCHECK_OPTS environment variable to pass arguments to shellcheck. See the shellcheck's official document for more details.
    # Enable some optional rules
    SHELLCHECK_OPTS='--enable=avoid-nullary-conditions' actionlint
    # Disable some rules
    SHELLCHECK_OPTS='--exclude=SC2129' actionlint
    
  • Explicitly specify docker.io host name in pre-commit hook. (thanks @​gotmax23, #382)
  • Explain how to report issues and send patches in CONTRIBUTING.md.
  • Fix the link to super-linter project. (thanks @​zkoppert, #376)
  • Add the instruction to install actionlint via the Arch Linux's official repository. (thanks @​sorairolake, #381)
  • Prefer fixed revisions in the pre-commit usage. (thanks @​corneliusroemer, #354)
  • Add instructions to use actionlint with Emacs. (thanks @​tirimia, #341)
  • Add instructions to use actionlint with Vim and Neovim text editors.
  • Add actionlint.RuleBase.Config method to get the actionlint configuration passed to rules. (thanks @​hugo-syn, #387)
  • Add actionlint.ContainsExpression function to check if the given string contains ${{ }} placeholders or not. (thanks @​hugo-syn, #388)
  • Support Go 1.22 and set the minimum supported Go version to 1.18 for x/sys package.
  • Update Go dependencies to the latest.
Changelog

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

v1.6.27 - 24 Feb 2024

  • Add macOS 14 runner labels for Apple Silicon support. The following labels are added. (thanks @​harryzcy, #392)
    • macos-14
    • macos-14-xlarge
    • macos-14-large
  • Remove ubuntu-18.04 runner label from runners list since it is no longer supported. (#363)
  • Allow glob patterns in self-hosted-runner.labels configuration. For example, the following configuration defines any runner labels prefixed with private-linux-. (thanks @​kishaningithub, #378)
    self-hosted-runner:
        labels:
          - private-linux-*
  • Fix a race condition bug when -format option is used for linting multiple workflow files. Thanks @​ReinAchten-TomTom for your help on the investigation. (#370)
  • Fix a race condition due to conflicts between some goroutine which starts to run shellcheck process and other goroutine which starts to wait until all processes finish.
  • The popular actions data set was updated to the latest and the following actions were newly added. (thanks @​jmarshall, #380)
    • google-github-actions/auth
    • google-github-actions/get-secretmanager-secrets
    • google-github-actions/setup-gcloud
    • google-github-actions/upload-cloud-storage
    • pulumi/actions
    • pypa/gh-action-pypi-publish
  • Add support for larger runner labels. The following labels are added. (thanks @​therealdwright, #371)
    • windows-latest-8-cores
    • ubuntu-latest-4-cores
    • ubuntu-latest-8-cores
    • ubuntu-latest-16-cores
  • The following WebHook types are supported for pull_request event.
    • enqueued
    • dequeued
    • milestoned
    • demilestoned
  • Explain how to control shellckeck behavior in the shellcheck rule document. Use SHELLCHECK_OPTS environment variable to pass arguments to shellcheck. See the shellcheck's official document for more details.
    # Enable some optional rules
    SHELLCHECK_OPTS='--enable=avoid-nullary-conditions' actionlint
    # Disable some rules
    SHELLCHECK_OPTS='--exclude=SC2129' actionlint
    
  • Explicitly specify docker.io host name in pre-commit hook. (thanks @​gotmax23, #382)
  • Explain how to report issues and send patches in CONTRIBUTING.md.
  • Fix the link to super-linter project. (thanks @​zkoppert, #376)
  • Add the instruction to install actionlint via the Arch Linux's official repository. (thanks @​sorairolake, #381)
  • Prefer fixed revisions in the pre-commit usage. (thanks @​corneliusroemer, #354)
  • Add instructions to use actionlint with Emacs. (thanks @​tirimia, #341)
  • Add instructions to use actionlint with Vim and Neovim text editors.
  • Add actionlint.RuleBase.Config method to get the actionlint configuration passed to rules. (thanks @​hugo-syn, #387)
  • Add actionlint.ContainsExpression function to check if the given string contains ${{ }} placeholders or not. (thanks @​hugo-syn, #388)
  • Support Go 1.22 and set the minimum supported Go version to 1.18 for x/sys package.
  • Update Go dependencies to the latest.

... (truncated)

Commits
  • c6bd062 bump up version to v1.6.27
  • 59b151b Merge pull request #403 from rhysd/ci/8027279341
  • 3e12031 update generated files by go generate on CI
  • 0b49da7 run sed once to replace all versions in a file
  • 83b81d5 fix version bump script generates garbage files
  • ec9009f explain how to disable/enable shellcheck rules
  • 5281740 run concurrent processes test case with multiple goroutines
  • 9eb8b7b fix race condition when process is created and proc.wait() is called at the...
  • f93f97b update versions in usage document by bump-version.bash
  • 9740795 Merge pull request #399 from rhysd/ci/7938396082
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Bumps [github.com/rhysd/actionlint](https://github.com/rhysd/actionlint) from 1.6.26 to 1.6.27.
- [Release notes](https://github.com/rhysd/actionlint/releases)
- [Changelog](https://github.com/rhysd/actionlint/blob/main/CHANGELOG.md)
- [Commits](rhysd/actionlint@v1.6.26...v1.6.27)

---
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 requested a review from a team as a code owner February 26, 2024 02:50
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Feb 26, 2024
Copy link

codecov bot commented Feb 26, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 61.99%. Comparing base (5a80a04) to head (b2371a7).
Report is 18 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #2228      +/-   ##
==========================================
+ Coverage   61.56%   61.99%   +0.43%     
==========================================
  Files          53       56       +3     
  Lines        9002     9139     +137     
==========================================
+ Hits         5542     5666     +124     
- Misses       3020     3026       +6     
- Partials      440      447       +7     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@mergify mergify bot merged commit 68597d6 into master Feb 26, 2024
10 checks passed
@mergify mergify bot deleted the dependabot/go_modules/github.com/rhysd/actionlint-1.6.27 branch February 26, 2024 03:02
jmikedupont2 pushed a commit to meta-introspector/act that referenced this pull request Mar 10, 2024
…ektos#2228)

Bumps [github.com/rhysd/actionlint](https://github.com/rhysd/actionlint) from 1.6.26 to 1.6.27.
- [Release notes](https://github.com/rhysd/actionlint/releases)
- [Changelog](https://github.com/rhysd/actionlint/blob/main/CHANGELOG.md)
- [Commits](rhysd/actionlint@v1.6.26...v1.6.27)

---
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>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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 size/S
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants