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

chore(deps): update all ci non-major dependencies #48

Merged
merged 1 commit into from
Nov 26, 2024

Conversation

open-turo-bot
Copy link
Contributor

@open-turo-bot open-turo-bot commented Nov 3, 2024

This PR contains the following updates:

Package Type Update Change
pre-commit/mirrors-eslint repository minor v9.13.0 -> v9.15.0
rhysd/actionlint repository patch v1.7.3 -> v1.7.4

Note: The pre-commit manager in Renovate is not supported by the pre-commit maintainers or community. Please do not report any problems there, instead create a Discussion in the Renovate repository if you have any questions.


Release Notes

pre-commit/mirrors-eslint (pre-commit/mirrors-eslint)

v9.15.0

Compare Source

v9.14.0

Compare Source

rhysd/actionlint (rhysd/actionlint)

v1.7.4

Compare Source

  • Disallow the usage of popular actions that run on node16 runner. The node16 runner will reach the end of life on November 12.
    • In case of the error, please update your actions to the latest version so that they run on the latest node20 runner.
    • If you're using self-hosted runner and you cannot upgrade your runner to node20 soon, please consider to ignore the error by the paths configuration described below.
    • If you're using actions/upload-artifact@v3 and actions/download-artifact@v3 on GHES, please replace them with actions/upload-artifact@v3-node20 and actions/download-artifact@v3-node20. (#​468)
  • Provide the configuration for ignoring errors by regular expressions in actionlint.yml (or actionlint.yaml). Please see the document for more details. (#​217, #​342)
    • The paths is a mapping from the file path glob pattern to the corresponding configuration. The ignore configuration is a list of regular expressions to match error messages (similar to the -ignore command line option).
      paths:

This pattern matches any YAML file under the '.github/workflows/' directory.

  .github/workflows/**/*.yaml:
    ignore:

Ignore the specific error from shellcheck

      - 'shellcheck reported issue in this script: SC2086:.+'

This pattern only matches '.github/workflows/release.yaml' file.

  .github/workflows/release.yaml:
    ignore:

Ignore errors from the old runner check. This may be useful for (outdated) self-hosted runner environment.

      - 'the runner of ".+" action is too old to run on GitHub Actions'
```
  • This configuration was not implemented initially because I wanted to keep the configuration as minimal as possible. However, due to several requests for it, the configuration has now been added.
  • Untrusted inputs check is safely skipped inside specific function calls. (#​459, thanks @​IlyaGulya)
    • For example, the following step contains the untrusted input github.head_ref, but it is safe because it's passed to the contains() argument.
      - run: echo "is_release_branch=${{ contains(github.head_ref, 'release') }}" >> "$GITHUB_OUTPUT"
    • For more details, please read the rule document.
  • Recognize gcr.io and gcr.dev as the correct container registry hosts. (#​463, thanks @​takaidohigasi)
    • Note that it is recommended explicitly specifying the scheme like docker://gcr.io/....
  • Remove macos-x.0 runner labels which are no longer available. (#​452)
  • Disable shellcheck SC2043 rule because it can cause false positives on checking run:. (#​355)
  • Fix the error message was not deterministic when detecting cycles in needs dependencies.
  • Fix the check for format() function was not applied when the function name contains upper case like Format(). Note that function names in ${{ }} placeholders are case-insensitive.
  • Update the popular actions data set to the latest.
  • Add actions/cache/save and actions/cache/restore to the popular actions data set.
  • Links in the README.md now point to the document of the latest version tag instead of HEAD of main branch.
  • Add Linter.LintStdin method dedicated to linting STDIN instead of handling STDIN in Command.
  • (Dev) Add new check-checks script to maintain the 'Checks' document. It automatically updates the outputs and playground links for example inputs in the document. It also checks the document is up-to-date on CI. Please read the document for more details.

Documentation

[Changes][v1.7.4]


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@open-turo-bot open-turo-bot enabled auto-merge (rebase) November 3, 2024 00:28
@open-turo-bot open-turo-bot requested a review from a team as a code owner November 3, 2024 00:28
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-ci-minor-patch branch from 0e8162d to 40864e9 Compare November 5, 2024 00:25
@open-turo-bot open-turo-bot changed the title chore(deps): update pre-commit hook pre-commit/mirrors-eslint to v9.14.0 chore(deps): update all ci non-major dependencies Nov 5, 2024
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-ci-minor-patch branch from 40864e9 to 112f99e Compare November 17, 2024 00:29
Copy link

Release notes preview

Below is a preview of the release notes if your PR gets merged.


1.3.1 (2024-11-17)

Bug Fixes

  • locals: adds guideline for not duplicating vars into locals (d899870)

Build System

  • deps: bump actions/cache from 3 to 4 (02b5396)
  • deps: bump actions/configure-pages from 3 to 4 (322b1a8)
  • deps: bump actions/configure-pages from 4 to 5 (2722c12)
  • deps: bump actions/deploy-pages from 1 to 4 (c7425ef)
  • deps: bump actions/upload-pages-artifact from 2 to 3 (ea2faed)
  • deps: bump open-turo/action-pre-commit from 1 to 2 (c0fa4c7)
  • deps: bump open-turo/action-pre-commit from 2 to 3 (10bc579)

Continuous Integration

  • use renovate, update CI and precommit (7a46c8d)

Documentation

  • standard: add resource tagging standard (45b5325)

Miscellaneous

  • deps: update all ci non-major dependencies (112f99e)
  • deps: update all ci non-major dependencies (231add4)
  • deps: update all ci non-major dependencies (3e83a99)
  • deps: update dependency node to v20.18.0 (9639ee9)
  • deps: update dependency node to v22 (0410a63)
  • deps: update node.js to v20 (758c36c)
  • deps: update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v9.18.0 (b7ef399)
  • deps: update pre-commit hook pre-commit/mirrors-eslint to v9.11.0 (98f0d46)
  • deps: update pre-commit hook pre-commit/mirrors-eslint to v9.13.0 (df3d461)
  • deps: update pre-commit hook pre-commit/pre-commit-hooks to v5 (f7b6463)
  • deps: update pre-commit hook rhysd/actionlint to v1.7.2 (1ae18ee)

@open-turo-bot open-turo-bot merged commit 0f8a096 into main Nov 26, 2024
4 checks passed
@open-turo-bot open-turo-bot deleted the c/renovate_all-ci-minor-patch branch November 26, 2024 00:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants